diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-07-22 16:24:40 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-09 09:21:51 +0200 |
commit | 487fea8cfffe872e888ebcc3e1f5538b72bcaec1 (patch) | |
tree | 844be698767bbc2ad4aedc8beb3295658b61af55 /tests/console | |
parent | 54be6b1f622cf394f3cb2c7eb5f2c27072018baa (diff) | |
download | forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar.gz forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar.bz2 forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar.xz forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.zip |
[ticket/12692] Move the language strings to cli.php
PHPBB3-12692
Diffstat (limited to 'tests/console')
-rw-r--r-- | tests/console/thumbnail_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/console/thumbnail_test.php b/tests/console/thumbnail_test.php index 7ac18d931a..11d2717f73 100644 --- a/tests/console/thumbnail_test.php +++ b/tests/console/thumbnail_test.php @@ -56,8 +56,8 @@ class phpbb_console_command_thumbnail_test extends phpbb_database_test_case ))); $this->application = new Application(); - $this->application->add(new generate($this->db, $this->user, $this->cache, $this->phpbb_root_path, $this->phpEx)); - $this->application->add(new delete($this->db, $this->user, $this->phpbb_root_path)); + $this->application->add(new generate($this->user, $this->db, $this->cache, $this->phpbb_root_path, $this->phpEx)); + $this->application->add(new delete($this->user, $this->db, $this->phpbb_root_path)); $this->application->add(new recreate($this->user)); } |