diff options
author | Sharad Soni <sharadrsoni@gmail.com> | 2019-04-23 23:04:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 23:04:20 +0200 |
commit | 346a59f87e6b72678a492c249fd7284cc3abc9f0 (patch) | |
tree | b5733aa0b8f55be6989ed976cbd47b1e9faf02d2 | |
parent | b08cacacb7385671b275ee7a1f7d4f6c6867ee20 (diff) |
Update Log_test.php
Changed to use PHP_EOL instead of `/r/n`
-rw-r--r-- | tests/codeigniter/core/Log_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Log_test.php b/tests/codeigniter/core/Log_test.php index de0f3800d..bdff25bdc 100644 --- a/tests/codeigniter/core/Log_test.php +++ b/tests/codeigniter/core/Log_test.php @@ -57,7 +57,7 @@ class Log_test extends CI_TestCase { $format_line->setAccessible(TRUE); $this->assertEquals( $format_line->invoke($instance, 'LEVEL', 'Timestamp', 'Message'), - "LEVEL - Timestamp --> Message\r\n" + "LEVEL - Timestamp --> Message" . PHP_EOL ); } } |