1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[feature/passwords] Use correct default type in manager_test

PHPBB3-11610
This commit is contained in:
Marc Alexander 2013-10-27 14:29:36 +01:00
parent 5193b3279c
commit a4d50d52b6

View File

@ -125,7 +125,8 @@ class phpbb_passwords_manager_test extends PHPUnit_Framework_TestCase
} }
// Check if convert_flag is correctly set // Check if convert_flag is correctly set
$this->assertEquals(($hash_type !== 'passwords.driver.bcrypt_2y'), $this->manager->convert_flag); $default_type = (version_compare(PHP_VERSION, '5.3.7', '<')) ? 'passwords.driver.bcrypt' : 'passwords.driver.bcrypt_2y';
$this->assertEquals(($hash_type !== $default_type), $this->manager->convert_flag);
} }