diff options
author | rxu <rxu@mail.ru> | 2017-04-16 20:53:59 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2017-04-16 23:40:16 +0700 |
commit | fcc8e155ec309669bebbf6e0370cecfe64c95193 (patch) | |
tree | 99bdec140f08170e7de71febb0393adf25a4c1ec /tests/template | |
parent | 1ea114ca20bd4613420284d7bfc4c92ab0a817b4 (diff) | |
download | forums-fcc8e155ec309669bebbf6e0370cecfe64c95193.tar forums-fcc8e155ec309669bebbf6e0370cecfe64c95193.tar.gz forums-fcc8e155ec309669bebbf6e0370cecfe64c95193.tar.bz2 forums-fcc8e155ec309669bebbf6e0370cecfe64c95193.tar.xz forums-fcc8e155ec309669bebbf6e0370cecfe64c95193.zip |
[ticket/14990] Move dispatcher object to the front of the options array
PHPBB3-14990
Diffstat (limited to 'tests/template')
-rw-r--r-- | tests/template/template_allfolder_test.php | 1 | ||||
-rw-r--r-- | tests/template/template_events_test.php | 1 | ||||
-rw-r--r-- | tests/template/template_includecss_test.php | 1 | ||||
-rw-r--r-- | tests/template/template_test_case.php | 1 | ||||
-rw-r--r-- | tests/template/template_test_case_with_tree.php | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tests/template/template_allfolder_test.php b/tests/template/template_allfolder_test.php index 9a0a42fabd..63a6ef08ea 100644 --- a/tests/template/template_allfolder_test.php +++ b/tests/template/template_allfolder_test.php @@ -67,6 +67,7 @@ class phpbb_template_allfolder_test extends phpbb_template_template_test_case $cache_path, $this->extension_manager, $loader, + new \phpbb\event\dispatcher($container), array( 'cache' => false, 'debug' => false, diff --git a/tests/template/template_events_test.php b/tests/template/template_events_test.php index e245c90aee..3a93c91e11 100644 --- a/tests/template/template_events_test.php +++ b/tests/template/template_events_test.php @@ -161,6 +161,7 @@ Zeta test event in all', $cache_path, $this->extension_manager, $loader, + new \phpbb\event\dispatcher($container), array( 'cache' => false, 'debug' => false, diff --git a/tests/template/template_includecss_test.php b/tests/template/template_includecss_test.php index 764652c9c2..bc871aa612 100644 --- a/tests/template/template_includecss_test.php +++ b/tests/template/template_includecss_test.php @@ -53,6 +53,7 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te $cache_path, null, $loader, + new \phpbb\event\dispatcher($container), array( 'cache' => false, 'debug' => false, diff --git a/tests/template/template_test_case.php b/tests/template/template_test_case.php index e52d3b76dd..8adbafb1b2 100644 --- a/tests/template/template_test_case.php +++ b/tests/template/template_test_case.php @@ -105,6 +105,7 @@ class phpbb_template_template_test_case extends phpbb_test_case $cache_path, null, $loader, + new \phpbb\event\dispatcher($container), array( 'cache' => false, 'debug' => false, diff --git a/tests/template/template_test_case_with_tree.php b/tests/template/template_test_case_with_tree.php index ff35d16120..75e3918f44 100644 --- a/tests/template/template_test_case_with_tree.php +++ b/tests/template/template_test_case_with_tree.php @@ -48,6 +48,7 @@ class phpbb_template_template_test_case_with_tree extends phpbb_template_templat $cache_path, null, $loader, + new \phpbb\event\dispatcher($container), array( 'cache' => false, 'debug' => false, |