aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/controller_test.php
diff options
context:
space:
mode:
authorNicofuma <github@nicofuma.fr>2015-05-14 16:47:18 +0200
committerNicofuma <github@nicofuma.fr>2015-05-14 16:47:18 +0200
commita26ab86dc63b196c79d86f3da36b8596a7beeb02 (patch)
treebe417ba6874bc300c9bf6ad393dcbf4b9789b836 /tests/controller/controller_test.php
parent11167f606015bc4663fa5a122ca95436ff412afc (diff)
parent74dbaac0394f45955553ff46515404fe5b06bfba (diff)
downloadforums-a26ab86dc63b196c79d86f3da36b8596a7beeb02.tar
forums-a26ab86dc63b196c79d86f3da36b8596a7beeb02.tar.gz
forums-a26ab86dc63b196c79d86f3da36b8596a7beeb02.tar.bz2
forums-a26ab86dc63b196c79d86f3da36b8596a7beeb02.tar.xz
forums-a26ab86dc63b196c79d86f3da36b8596a7beeb02.zip
Merge pull request #3577 from MateBartus/ticket/13800
[ticket/13800] Make router's extension manager dependency optional
Diffstat (limited to 'tests/controller/controller_test.php')
-rw-r--r--tests/controller/controller_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/controller/controller_test.php b/tests/controller/controller_test.php
index 5c0290ee6f..5781d3ebc1 100644
--- a/tests/controller/controller_test.php
+++ b/tests/controller/controller_test.php
@@ -40,7 +40,7 @@ class phpbb_controller_controller_test extends phpbb_test_case
public function test_router_find_files()
{
- $router = new \phpbb\routing\router(new \phpbb\filesystem\filesystem(), $this->extension_manager, dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT);
+ $router = new \phpbb\routing\router(new \phpbb\filesystem\filesystem(), dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT, $this->extension_manager);
$router->find_routing_files($this->extension_manager->all_enabled(false));
$routes = $router->find(__DIR__)->get_routes();