aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pagination
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-08 16:32:43 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-08 16:37:22 +0100
commit07c07171f9b70a49b592473b8a8400d3838333a3 (patch)
tree0dbacc6b1f177c47e99b0be122a42ccf51f510f3 /tests/pagination
parent275910d8b0fd8d5edeee07eb05ad82da48cc72a3 (diff)
downloadforums-07c07171f9b70a49b592473b8a8400d3838333a3.tar
forums-07c07171f9b70a49b592473b8a8400d3838333a3.tar.gz
forums-07c07171f9b70a49b592473b8a8400d3838333a3.tar.bz2
forums-07c07171f9b70a49b592473b8a8400d3838333a3.tar.xz
forums-07c07171f9b70a49b592473b8a8400d3838333a3.zip
[ticket/12090] Make provider a service and inject it into the helper
PHPBB3-12090
Diffstat (limited to 'tests/pagination')
-rw-r--r--tests/pagination/pagination_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pagination/pagination_test.php b/tests/pagination/pagination_test.php
index 38ab8e62a4..89be33ebab 100644
--- a/tests/pagination/pagination_test.php
+++ b/tests/pagination/pagination_test.php
@@ -38,7 +38,7 @@ class phpbb_pagination_pagination_test extends phpbb_template_template_test_case
);
$this->config = new \phpbb\config\config(array('enable_mod_rewrite' => '1'));
- $this->helper = new \phpbb\controller\helper($this->finder, $this->template, $this->user, $this->config, dirname(__FILE__) . '/', 'php');
+ $this->helper = new \phpbb\controller\helper($this->template, $this->user, $this->config, new \phpbb\controller\provider($this->finder), dirname(__FILE__) . '/', 'php');
$this->pagination = new \phpbb\pagination($this->template, $this->user, $this->helper);
}