From 0a496e70118fa32a3df1557004481c564eb08ace Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Thu, 17 Dec 2015 18:05:04 +0000 Subject: [PATCH] [Security] Enable bcrypt validation and result length tests on all PHP versions --- .../Tests/Core/Encoder/BCryptPasswordEncoderTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Symfony/Component/Security/Tests/Core/Encoder/BCryptPasswordEncoderTest.php b/src/Symfony/Component/Security/Tests/Core/Encoder/BCryptPasswordEncoderTest.php index 52d64a29a8..355850a703 100644 --- a/src/Symfony/Component/Security/Tests/Core/Encoder/BCryptPasswordEncoderTest.php +++ b/src/Symfony/Component/Security/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);