diff options
author | LEZY Thomas <thomas.lezy@ensimag.grenoble-inp.fr> | 2014-06-10 09:56:11 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-23 12:41:44 +0200 |
commit | 5a4de4aa1f26596ecee53ba2573947d73dc77ab7 (patch) | |
tree | 357a3a6692d94b8174b62706bd45a9b8a4e326ff /tests/console/config | |
parent | [ticket/12658] Refactoring code (diff) | |
download | phpbb-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.tar.gz phpbb-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.tar.bz2 phpbb-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.zip |
[ticket/12658] Fix wrong eol character
PHPBB3-12658
Diffstat (limited to 'tests/console/config')
-rw-r--r-- | tests/console/config/config_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/console/config/config_test.php b/tests/console/config/config_test.php index 5d10ab5e7a..b8d30d314f 100644 --- a/tests/console/config/config_test.php +++ b/tests/console/config/config_test.php @@ -138,7 +138,7 @@ class phpbb_console_command_config_test extends phpbb_test_case '--no-newline' => false, )); - $this->assertSame($this->config['test_key'] . "\n", $command_tester->getDisplay()); + $this->assertSame($this->config['test_key'] . PHP_EOL, $command_tester->getDisplay()); } public function test_get_error() |