diff options
author | mrgoldy <gijsmartens1@gmail.com> | 2018-12-09 23:52:50 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-09-25 20:07:09 +0200 |
commit | 7989f3f71fd665aa743d947c7487d41c6f0a33d4 (patch) | |
tree | 4d2fe00e8c520c13400c193c994bb26070ae8044 /tests/template/template_includecss_test.php | |
parent | 012fe1887963adecc30fa46b7c7069a29600666d (diff) | |
download | forums-7989f3f71fd665aa743d947c7487d41c6f0a33d4.tar forums-7989f3f71fd665aa743d947c7487d41c6f0a33d4.tar.gz forums-7989f3f71fd665aa743d947c7487d41c6f0a33d4.tar.bz2 forums-7989f3f71fd665aa743d947c7487d41c6f0a33d4.tar.xz forums-7989f3f71fd665aa743d947c7487d41c6f0a33d4.zip |
[ticket/15905] Try with existing phpbb extension
PHPBB3-15905
Diffstat (limited to 'tests/template/template_includecss_test.php')
-rw-r--r-- | tests/template/template_includecss_test.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/template/template_includecss_test.php b/tests/template/template_includecss_test.php index 5f9875a556..0f26c095a7 100644 --- a/tests/template/template_includecss_test.php +++ b/tests/template/template_includecss_test.php @@ -25,6 +25,8 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te { global $phpbb_root_path, $phpEx, $user; + $auth = $this->getMock('\phpbb\auth\auth'); + $defaults = $this->config_defaults(); $config = new \phpbb\config\config(array_merge($defaults, $new_config)); @@ -68,7 +70,7 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te $twig, $cache_path, $this->user, - array(new \phpbb\template\twig\extension($context, $twig, $this->user)), + array(new \phpbb\template\twig\extension($auth, $context, $twig, $this->user)), new phpbb_mock_extension_manager( dirname(__FILE__) . '/', array( |