summaryrefslogtreecommitdiffstats
path: root/Core
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-12-26 14:39:53 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2015-12-26 14:39:53 +0100
commit7e5a6e77ef36f27cda356e804533f8dd183a121d (patch)
tree2fb33307d688be5c0c2853c6d3bf907d08222111 /Core
parent91db38a0dc428c17645c274634a355f11d2faa66 (diff)
parentf0c5bdc7583a9f9a3f7736aff16b5cfcf27ec0ce (diff)
downloadsymfony-security-7e5a6e77ef36f27cda356e804533f8dd183a121d.zip
symfony-security-7e5a6e77ef36f27cda356e804533f8dd183a121d.tar.gz
symfony-security-7e5a6e77ef36f27cda356e804533f8dd183a121d.tar.bz2
Merge branch '2.8' into 3.0v3.0.1
* 2.8: [2.7] Fixed flatten exception recursion with errors Embedded identifier support Also transform inline mappings to objects Change the ExtensionInterface load method definition to bo identical to the documentation. add and correct armenian translations [Config] Fix array sort on normalization in edge case [Security] Run tests on all PHP versions [DomCrawler] Revert previous restriction, allow selection of every DOMNode object [Serializer] Make metadata interfaces internal [Yaml] fix indented line handling in folded blocks improve BrowserKit test coverage p1
Diffstat (limited to 'Core')
-rw-r--r--Core/Tests/Encoder/BCryptPasswordEncoderTest.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
index ce6bee5..40de8af 100644
--- a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
+++ b/Core/Tests/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);
@@ -76,9 +70,6 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase
$encoder->encodePassword(str_repeat('a', 73), 'salt');
}
- /**
- * @requires PHP 5.3.7
- */
public function testCheckPasswordLength()
{
$encoder = new BCryptPasswordEncoder(self::VALID_COST);