aboutsummaryrefslogtreecommitdiffstats
path: root/tests/console/config/config_test.php
diff options
context:
space:
mode:
authorLEZY Thomas <thomas.lezy@ensimag.grenoble-inp.fr>2014-06-10 09:56:11 +0200
committerTristan Darricau <github@nicofuma.fr>2014-08-23 12:41:44 +0200
commit5a4de4aa1f26596ecee53ba2573947d73dc77ab7 (patch)
tree357a3a6692d94b8174b62706bd45a9b8a4e326ff /tests/console/config/config_test.php
parent059f21a3ac54bd3e454b323090fbc03f1c5a0748 (diff)
downloadforums-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.tar
forums-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.tar.gz
forums-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.tar.bz2
forums-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.tar.xz
forums-5a4de4aa1f26596ecee53ba2573947d73dc77ab7.zip
[ticket/12658] Fix wrong eol character
PHPBB3-12658
Diffstat (limited to 'tests/console/config/config_test.php')
-rw-r--r--tests/console/config/config_test.php2
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()