diff options
author | MateBartus <mate.bartus@gmail.com> | 2015-04-29 00:13:29 +0200 |
---|---|---|
committer | MateBartus <mate.bartus@gmail.com> | 2015-05-01 12:40:53 +0200 |
commit | 57072a1e28061ff51148c7d6a0c47664f0060639 (patch) | |
tree | 44ac0b381fb03106656edb150fad256c88e7c256 /tests/controller | |
parent | Merge branch '3.1.x' (diff) | |
download | phpbb-57072a1e28061ff51148c7d6a0c47664f0060639.tar.gz phpbb-57072a1e28061ff51148c7d6a0c47664f0060639.tar.bz2 phpbb-57072a1e28061ff51148c7d6a0c47664f0060639.zip |
[ticket/13793] Remove translation on throwing exceptions
PHPBB3-13793
Diffstat (limited to 'tests/controller')
-rw-r--r-- | tests/controller/controller_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/controller/controller_test.php b/tests/controller/controller_test.php index a837e25f66..5c0290ee6f 100644 --- a/tests/controller/controller_test.php +++ b/tests/controller/controller_test.php @@ -82,7 +82,7 @@ class phpbb_controller_controller_test extends phpbb_test_case include(__DIR__.'/phpbb/controller/foo.php'); } - $resolver = new \phpbb\controller\resolver(new \phpbb\user('\phpbb\datetime'), $container, dirname(__FILE__) . '/'); + $resolver = new \phpbb\controller\resolver($container, dirname(__FILE__) . '/'); $symfony_request = new Request(); $symfony_request->attributes->set('_controller', 'foo.controller:handle'); |