aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-05-28 21:03:17 +0200
committerMarc Alexander <admin@m-a-styles.de>2014-06-01 21:31:05 +0200
commitaf25aef04ca3ee39cd1597b356638e883ccf72fa (patch)
tree6fd92cb452af622566b07d16221b7c6a13ef48d6 /tests/passwords/manager_test.php
parent[ticket/12352] Rename phpbb2_md5 driver to fit filenames of other drivers (diff)
downloadphpbb-af25aef04ca3ee39cd1597b356638e883ccf72fa.tar.gz
phpbb-af25aef04ca3ee39cd1597b356638e883ccf72fa.tar.bz2
phpbb-af25aef04ca3ee39cd1597b356638e883ccf72fa.zip
[ticket/12352] Add driver for myBB md5 passwords
PHPBB3-12352
Diffstat (limited to 'tests/passwords/manager_test.php')
-rw-r--r--tests/passwords/manager_test.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/passwords/manager_test.php b/tests/passwords/manager_test.php
index 2a53d79027..e2ec1972bb 100644
--- a/tests/passwords/manager_test.php
+++ b/tests/passwords/manager_test.php
@@ -36,6 +36,7 @@ class phpbb_passwords_manager_test extends \phpbb_test_case
'passwords.driver.convert_password' => new \phpbb\passwords\driver\convert_password($config, $this->driver_helper),
'passwords.driver.sha1_smf' => new \phpbb\passwords\driver\sha1_smf($config, $this->driver_helper),
'passwords.driver.sha1' => new \phpbb\passwords\driver\sha1($config, $this->driver_helper),
+ 'passwords.driver.md5_mybb' => new \phpbb\passwords\driver\md5_mybb($config, $this->driver_helper),
);
$this->passwords_drivers['passwords.driver.md5_phpbb2'] = new \phpbb\passwords\driver\md5_phpbb2($request, $this->passwords_drivers['passwords.driver.salted_md5'], $phpbb_root_path, $php_ext);