From 5a4de4aa1f26596ecee53ba2573947d73dc77ab7 Mon Sep 17 00:00:00 2001 From: LEZY Thomas Date: Tue, 10 Jun 2014 09:56:11 +0200 Subject: [PATCH] [ticket/12658] Fix wrong eol character PHPBB3-12658 --- tests/console/config/config_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()