summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2019-05-10 19:04:57 +0200
committerAndrey Andreev <narf@devilix.net>2019-05-10 19:05:34 +0200
commitb0f43e29e43228366390de7e0aa80d2134d1f224 (patch)
treedb0b08d0ae80da94a0c1f6ab3352180d807b8f8c /tests
parente6dc433586c648f4a9ebb8603e7b847d1d4f3f70 (diff)
Merge pull request #5744 from sharadrsoni/patch-1
Adding support for proper CRLF
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/core/Log_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Log_test.php b/tests/codeigniter/core/Log_test.php
index 103af342b..927984385 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\n"
+ "LEVEL - Timestamp --> Message".PHP_EOL
);
}
}