1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/14972] Avoid using self as constant in tests

PHPBB3-14972
This commit is contained in:
rxu
2017-05-07 03:26:01 +07:00
committed by Marc Alexander
parent e1376e14de
commit 6e6195c303
6 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ class phpbb_functional_extension_acp_test extends phpbb_functional_test_case
{
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__) . '/../extension/ext/', self::$fixtures);
}