diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-10-27 14:18:02 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-10-27 14:18:02 +0100 |
commit | 5193b3279cfcd4f7f5d656ec806b87e971c5523f (patch) | |
tree | 45bb4f9fd78e8a34e2057593aa4b68de9135e86b /tests/passwords/manager_test.php | |
parent | [feature/passwords] Fix tests on PHP < 5.3.3 again (diff) | |
download | phpbb-5193b3279cfcd4f7f5d656ec806b87e971c5523f.tar.gz phpbb-5193b3279cfcd4f7f5d656ec806b87e971c5523f.tar.bz2 phpbb-5193b3279cfcd4f7f5d656ec806b87e971c5523f.zip |
[feature/passwords] Pass list of default types to passwords manager
This list is in the order of how the driver types would be used. If a driver
is not supported we will try the subsequent one.
PHPBB3-11610
Diffstat (limited to 'tests/passwords/manager_test.php')
-rw-r--r-- | tests/passwords/manager_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/passwords/manager_test.php b/tests/passwords/manager_test.php index f68ca25a2f..4ddd8742ae 100644 --- a/tests/passwords/manager_test.php +++ b/tests/passwords/manager_test.php @@ -22,8 +22,8 @@ class phpbb_passwords_manager_test extends PHPUnit_Framework_TestCase $this->driver_helper = new \phpbb\passwords\driver\helper($config); $this->passwords_drivers = array( - 'passwords.driver.bcrypt' => new \phpbb\passwords\driver\bcrypt($config, $this->driver_helper), 'passwords.driver.bcrypt_2y' => new \phpbb\passwords\driver\bcrypt_2y($config, $this->driver_helper), + 'passwords.driver.bcrypt' => new \phpbb\passwords\driver\bcrypt($config, $this->driver_helper), 'passwords.driver.salted_md5' => new \phpbb\passwords\driver\salted_md5($config, $this->driver_helper), 'passwords.driver.phpass' => new \phpbb\passwords\driver\phpass($config, $this->driver_helper), ); @@ -35,7 +35,7 @@ class phpbb_passwords_manager_test extends PHPUnit_Framework_TestCase $this->helper = new \phpbb\passwords\helper; // Set up passwords manager - $this->manager = new \phpbb\passwords\manager($config, $this->passwords_drivers, $this->helper, 'passwords.driver.bcrypt_2y'); + $this->manager = new \phpbb\passwords\manager($config, $this->passwords_drivers, $this->helper, array_keys($this->passwords_drivers)); } public function hash_password_data() |