diff options
Diffstat (limited to 'Core/Tests/Encoder/BCryptPasswordEncoderTest.php')
-rw-r--r-- | Core/Tests/Encoder/BCryptPasswordEncoderTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php index 4d9ca6d..ebd845d 100644 --- a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php +++ b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php @@ -40,7 +40,7 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase public function testCostInRange() { - for ($cost = 4; $cost <= 31; $cost++) { + for ($cost = 4; $cost <= 31; ++$cost) { new BCryptPasswordEncoder($cost); } } |