diff options
Diffstat (limited to 'Tests/Core/Util')
-rwxr-xr-x | Tests/Core/Util/SecureRandomTest.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Tests/Core/Util/SecureRandomTest.php b/Tests/Core/Util/SecureRandomTest.php index 1a4bdbd..230a26a 100755 --- a/Tests/Core/Util/SecureRandomTest.php +++ b/Tests/Core/Util/SecureRandomTest.php @@ -154,13 +154,10 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase { $secureRandoms = array(); - // openssl - $secureRandom = new SecureRandom(); // only add if openssl is indeed present + $secureRandom = new SecureRandom(); if ($this->hasOpenSsl($secureRandom)) { $secureRandoms[] = array($secureRandom); - } else { - $this->markTestSkipped('OpenSSL is not available'); } // no-openssl with custom seed provider |