1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 11:01:48 +02:00

[ticket/12658] Fix wrong eol character

PHPBB3-12658
This commit is contained in:
LEZY Thomas
2014-06-10 09:56:11 +02:00
committed by Tristan Darricau
parent 059f21a3ac
commit 5a4de4aa1f

View File

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