aboutsummaryrefslogtreecommitdiffstats
path: root/tests/console/cache/purge_test.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-08-08 13:29:41 +0200
committerTristan Darricau <github@nicofuma.fr>2014-09-19 11:09:37 +0200
commitc767712c64de93b96e718af593c6c18f4a0042b0 (patch)
tree13a970ba8bba1ea39c25b33b382f5e498e558d73 /tests/console/cache/purge_test.php
parent689eaab3e2139d6e485d4cd0da1248f4a8de2404 (diff)
downloadforums-c767712c64de93b96e718af593c6c18f4a0042b0.tar
forums-c767712c64de93b96e718af593c6c18f4a0042b0.tar.gz
forums-c767712c64de93b96e718af593c6c18f4a0042b0.tar.bz2
forums-c767712c64de93b96e718af593c6c18f4a0042b0.tar.xz
forums-c767712c64de93b96e718af593c6c18f4a0042b0.zip
[ticket/12657] Fix the order of the parameters for the constructor
PHPBB3-12657
Diffstat (limited to 'tests/console/cache/purge_test.php')
-rw-r--r--tests/console/cache/purge_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/console/cache/purge_test.php b/tests/console/cache/purge_test.php
index ee4e8f5d50..ff76f31e69 100644
--- a/tests/console/cache/purge_test.php
+++ b/tests/console/cache/purge_test.php
@@ -85,7 +85,7 @@ class phpbb_console_command_cache_purge_test extends phpbb_test_case
public function get_command_tester()
{
$application = new Application();
- $application->add(new purge($this->cache, $this->db, $this->getMock('\phpbb\auth\auth'), new \phpbb\log\null(), $this->getMock('\phpbb\user'), $this->config));
+ $application->add(new purge($this->getMock('\phpbb\user'), $this->cache, $this->db, $this->getMock('\phpbb\auth\auth'), new \phpbb\log\null(), $this->config));
$command = $application->find('cache:purge');
$this->command_name = $command->getName();