diff options
author | Nicofuma <github@nicofuma.fr> | 2014-05-03 11:44:58 +0200 |
---|---|---|
committer | Nicofuma <github@nicofuma.fr> | 2014-05-03 11:44:58 +0200 |
commit | 01e19a00f8107698ed1c6868398cbbf0ac2ab7d8 (patch) | |
tree | 10becd911fdcbd5d2548376023e619a4f0defdbd /tests/pagination | |
parent | 24634668260db2e64c61e48c54c98c1ab4087020 (diff) | |
download | forums-01e19a00f8107698ed1c6868398cbbf0ac2ab7d8.tar forums-01e19a00f8107698ed1c6868398cbbf0ac2ab7d8.tar.gz forums-01e19a00f8107698ed1c6868398cbbf0ac2ab7d8.tar.bz2 forums-01e19a00f8107698ed1c6868398cbbf0ac2ab7d8.tar.xz forums-01e19a00f8107698ed1c6868398cbbf0ac2ab7d8.zip |
[ticket/11497] Fix tests
PHPBB3-11497
Diffstat (limited to 'tests/pagination')
-rw-r--r-- | tests/pagination/pagination_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pagination/pagination_test.php b/tests/pagination/pagination_test.php index be898de9b7..bf8729e4f8 100644 --- a/tests/pagination/pagination_test.php +++ b/tests/pagination/pagination_test.php @@ -40,7 +40,7 @@ class phpbb_pagination_pagination_test extends phpbb_template_template_test_case $this->config = new \phpbb\config\config(array('enable_mod_rewrite' => '1')); $provider = new \phpbb\controller\provider(); - $this->provider->set_ext_finder($manager->get_finder()); + $provider->set_ext_finder($this->finder); $provider->find(dirname(__FILE__) . '/'); $this->helper = new \phpbb\controller\helper($this->template, $this->user, $this->config, $provider, $manager, '', 'php'); $this->pagination = new \phpbb\pagination($this->template, $this->user, $this->helper); |