aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/controller_test.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-11 15:10:14 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-11 15:10:14 +0200
commit16cd1db59a3e089fd07b2b2a7586e32e73a780e9 (patch)
treeef4c0283dfb1d4c8b53ec4ab6dd9141af236774f /tests/controller/controller_test.php
parent197c801746b148e6bcf7b5824e9077c185bf4e5f (diff)
downloadforums-16cd1db59a3e089fd07b2b2a7586e32e73a780e9.tar
forums-16cd1db59a3e089fd07b2b2a7586e32e73a780e9.tar.gz
forums-16cd1db59a3e089fd07b2b2a7586e32e73a780e9.tar.bz2
forums-16cd1db59a3e089fd07b2b2a7586e32e73a780e9.tar.xz
forums-16cd1db59a3e089fd07b2b2a7586e32e73a780e9.zip
[ticket/12529] Move $phpbb_root_path to the end of the constructor
PHPBB3-12529
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 630757dfd7..e0564f0a11 100644
--- a/tests/controller/controller_test.php
+++ b/tests/controller/controller_test.php
@@ -68,7 +68,7 @@ class phpbb_controller_controller_test extends phpbb_test_case
include(__DIR__.'/phpbb/controller/foo.php');
}
- $resolver = new \phpbb\controller\resolver(new \phpbb\user, dirname(__FILE__) . '/', $container);
+ $resolver = new \phpbb\controller\resolver(new \phpbb\user, $container, dirname(__FILE__) . '/');
$symfony_request = new Request();
$symfony_request->attributes->set('_controller', 'foo.controller:handle');