diff options
author | Matt Friedman <maf675@gmail.com> | 2016-02-29 21:03:32 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-02-29 21:03:32 -0800 |
commit | 0ca4484525f69ea5e7c5cd28f671364604725e40 (patch) | |
tree | 939afc1f454af258885c2daa9e0c134dc873cc6f /tests/console | |
parent | [ticket/12684] Fix a few mistakes and clean it up (diff) | |
download | phpbb-0ca4484525f69ea5e7c5cd28f671364604725e40.tar.gz phpbb-0ca4484525f69ea5e7c5cd28f671364604725e40.tar.bz2 phpbb-0ca4484525f69ea5e7c5cd28f671364604725e40.zip |
[ticket/12684] Move all lang keys to cli
PHPBB3-12684
Diffstat (limited to 'tests/console')
-rw-r--r-- | tests/console/user/add_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/console/user/add_test.php b/tests/console/user/add_test.php index 8fc921babf..de146ef6ec 100644 --- a/tests/console/user/add_test.php +++ b/tests/console/user/add_test.php @@ -102,7 +102,7 @@ class phpbb_console_command_user_add_test extends phpbb_database_test_case )); $this->assertNotEquals(null, $this->get_user_id('foo')); - $this->assertContains('SUCCESS_ADD_USER', $command_tester->getDisplay()); + $this->assertContains('CLI_USER_ADD_SUCCESS', $command_tester->getDisplay()); } public function test_add_dialog() @@ -118,7 +118,7 @@ class phpbb_console_command_user_add_test extends phpbb_database_test_case )); $this->assertNotEquals(null, $this->get_user_id('bar')); - $this->assertContains('SUCCESS_ADD_USER', $command_tester->getDisplay()); + $this->assertContains('CLI_USER_ADD_SUCCESS', $command_tester->getDisplay()); } |