aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/extension_controller_test.php
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2017-05-07 03:26:01 +0700
committerMarc Alexander <admin@m-a-styles.de>2018-01-01 13:56:03 +0100
commit6e6195c303c23e66419ffed9fbc3b19856614afc (patch)
tree8c185613be5aa9aea08678599fa59d25201c49df /tests/functional/extension_controller_test.php
parente1376e14ded58c3f4135253d7329db0676e49c87 (diff)
downloadforums-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.php2
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);
}