diff options
author | Jakub Zalas <jakub@zalas.pl> | 2015-12-17 18:05:04 +0000 |
---|---|---|
committer | Jakub Zalas <jakub@zalas.pl> | 2015-12-17 18:05:04 +0000 |
commit | ad9416c7ecfd8ebb4cc57c8b044534b1cdaeb2ed (patch) | |
tree | 08a5bf02a07434c4c854fbe96cd6ba2f2dbfddb9 | |
parent | f19082239fd48c17e8d99b252215f0172dc1ff14 (diff) | |
download | symfony-security-ad9416c7ecfd8ebb4cc57c8b044534b1cdaeb2ed.zip symfony-security-ad9416c7ecfd8ebb4cc57c8b044534b1cdaeb2ed.tar.gz symfony-security-ad9416c7ecfd8ebb4cc57c8b044534b1cdaeb2ed.tar.bz2 |
[Security] Enable bcrypt validation and result length tests on all PHP versions
-rw-r--r-- | Tests/Core/Encoder/BCryptPasswordEncoderTest.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Tests/Core/Encoder/BCryptPasswordEncoderTest.php b/Tests/Core/Encoder/BCryptPasswordEncoderTest.php index 52d64a2..355850a 100644 --- a/Tests/Core/Encoder/BCryptPasswordEncoderTest.php +++ b/Tests/Core/Encoder/BCryptPasswordEncoderTest.php @@ -45,9 +45,6 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase } } - /** - * @requires PHP 5.3.7 - */ public function testResultLength() { $encoder = new BCryptPasswordEncoder(self::VALID_COST); @@ -55,9 +52,6 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase $this->assertEquals(60, strlen($result)); } - /** - * @requires PHP 5.3.7 - */ public function testValidation() { $encoder = new BCryptPasswordEncoder(self::VALID_COST); |