diff options
author | rxu <rxu@mail.ru> | 2017-05-07 03:26:01 +0700 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-01-01 13:56:03 +0100 |
commit | 6e6195c303c23e66419ffed9fbc3b19856614afc (patch) | |
tree | 8c185613be5aa9aea08678599fa59d25201c49df /tests/functional/extension_controller_test.php | |
parent | e1376e14ded58c3f4135253d7329db0676e49c87 (diff) | |
download | forums-6e6195c303c23e66419ffed9fbc3b19856614afc.tar forums-6e6195c303c23e66419ffed9fbc3b19856614afc.tar.gz forums-6e6195c303c23e66419ffed9fbc3b19856614afc.tar.bz2 forums-6e6195c303c23e66419ffed9fbc3b19856614afc.tar.xz forums-6e6195c303c23e66419ffed9fbc3b19856614afc.zip |
[ticket/14972] Avoid using self as constant in tests
PHPBB3-14972
Diffstat (limited to 'tests/functional/extension_controller_test.php')
-rw-r--r-- | tests/functional/extension_controller_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/extension_controller_test.php b/tests/functional/extension_controller_test.php index 18eb9ad4c6..58c3878b8b 100644 --- a/tests/functional/extension_controller_test.php +++ b/tests/functional/extension_controller_test.php @@ -34,7 +34,7 @@ class phpbb_functional_extension_controller_test extends phpbb_functional_test_c { parent::setUpBeforeClass(); - self::$helper = new phpbb_test_case_helpers(self); + self::$helper = new phpbb_test_case_helpers(__CLASS__); self::$helper->copy_ext_fixtures(dirname(__FILE__) . '/fixtures/ext/', self::$fixtures); } |