diff options
Diffstat (limited to 'Tests/Core')
-rwxr-xr-x | Tests/Core/Util/PrngTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Core/Util/PrngTest.php b/Tests/Core/Util/PrngTest.php index 7c9b2e2..23afd30 100755 --- a/Tests/Core/Util/PrngTest.php +++ b/Tests/Core/Util/PrngTest.php @@ -147,11 +147,11 @@ class PrngTest extends \PHPUnit_Framework_TestCase $prngs = array(); // openssl with fallback - $prng = new Prng(new NullSeedProvider()); + $prng = new Prng(); $prngs[] = array($prng); // no-openssl with custom seed provider - $prng = new Prng(new NullSeedProvider()); + $prng = new Prng(sys_get_temp_dir().'/_sf2.seed'); $this->disableOpenSsl($prng); $prngs[] = array($prng); |