diff options
| author | MateBartus <mate.bartus@gmail.com> | 2015-04-30 22:40:17 +0200 |
|---|---|---|
| committer | MateBartus <mate.bartus@gmail.com> | 2015-05-02 23:45:45 +0200 |
| commit | 74dbaac0394f45955553ff46515404fe5b06bfba (patch) | |
| tree | c39a492b728395e7b25409a96f25f9a109ea0ef9 /tests/controller/common_helper_route.php | |
| parent | 85967425795773b7cb4116bb05adef810fb8bc07 (diff) | |
| download | forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar.gz forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar.bz2 forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar.xz forums-74dbaac0394f45955553ff46515404fe5b06bfba.zip | |
[ticket/13800] Make router's extension manager dependency optional
PHPBB3-13800
Diffstat (limited to 'tests/controller/common_helper_route.php')
| -rw-r--r-- | tests/controller/common_helper_route.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/controller/common_helper_route.php b/tests/controller/common_helper_route.php index 3e4b5fd38d..6910530279 100644 --- a/tests/controller/common_helper_route.php +++ b/tests/controller/common_helper_route.php @@ -120,7 +120,7 @@ abstract class phpbb_controller_common_helper_route extends phpbb_test_case ) ); - $this->router = new phpbb_mock_router($this->filesystem, $this->extension_manager, dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT); + $this->router = new phpbb_mock_router($this->filesystem, dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT, $this->extension_manager); $this->router->find_routing_files($this->extension_manager->all_enabled(false)); $this->router->find(dirname(__FILE__) . '/'); // Set correct current phpBB root path |
