1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/12684] Move all lang keys to cli

PHPBB3-12684
This commit is contained in:
Matt Friedman
2016-02-29 21:03:32 -08:00
parent e905c6226d
commit 0ca4484525
4 changed files with 5 additions and 5 deletions

View File

@@ -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());
}