diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-05 18:16:50 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-05 18:16:50 +0200 |
commit | baef26f7ed44ada30c3ed345035d2b4d7cea3a2f (patch) | |
tree | 73a0d2b8b6b7ee7865f5f7c2eb4152a1dfaaaa2d /tests/passwords | |
parent | 324daf72fec829a4a937879ef0615829443114cc (diff) | |
download | forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar.gz forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar.bz2 forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar.xz forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.zip |
[ticket/12503] All tests should extend \phpbb_test_case
PHPBB3-12503
Diffstat (limited to 'tests/passwords')
-rw-r--r-- | tests/passwords/drivers_test.php | 2 | ||||
-rw-r--r-- | tests/passwords/manager_test.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/passwords/drivers_test.php b/tests/passwords/drivers_test.php index 40bb110185..df1474419b 100644 --- a/tests/passwords/drivers_test.php +++ b/tests/passwords/drivers_test.php @@ -7,7 +7,7 @@ * */ -class phpbb_passwords_helper_test extends PHPUnit_Framework_TestCase +class phpbb_passwords_helper_test extends \phpbb_test_case { public function setUp() { diff --git a/tests/passwords/manager_test.php b/tests/passwords/manager_test.php index 008f222696..f38b31e843 100644 --- a/tests/passwords/manager_test.php +++ b/tests/passwords/manager_test.php @@ -7,7 +7,7 @@ * */ -class phpbb_passwords_manager_test extends PHPUnit_Framework_TestCase +class phpbb_passwords_manager_test extends \phpbb_test_case { protected $passwords_drivers; |