From 4bec98000f9749e28d15fff83c32387968113a80 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Wed, 23 Dec 2015 19:13:52 +0100 Subject: [PATCH] [Security] Run tests on all PHP versions Symfony 2.7 supports PHP >= 5.3.9 --- .../Core/Tests/Encoder/BCryptPasswordEncoderTest.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Symfony/Component/Security/Core/Tests/Encoder/BCryptPasswordEncoderTest.php b/src/Symfony/Component/Security/Core/Tests/Encoder/BCryptPasswordEncoderTest.php index ce6bee5c552d..40de8af218c3 100644 --- a/src/Symfony/Component/Security/Core/Tests/Encoder/BCryptPasswordEncoderTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Encoder/BCryptPasswordEncoderTest.php @@ -45,9 +45,6 @@ public function testCostInRange() } } - /** - * @requires PHP 5.3.7 - */ public function testResultLength() { $encoder = new BCryptPasswordEncoder(self::VALID_COST); @@ -55,9 +52,6 @@ public function testResultLength() $this->assertEquals(60, strlen($result)); } - /** - * @requires PHP 5.3.7 - */ public function testValidation() { $encoder = new BCryptPasswordEncoder(self::VALID_COST); @@ -76,9 +70,6 @@ public function testEncodePasswordLength() $encoder->encodePassword(str_repeat('a', 73), 'salt'); } - /** - * @requires PHP 5.3.7 - */ public function testCheckPasswordLength() { $encoder = new BCryptPasswordEncoder(self::VALID_COST);