summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2019-05-10 19:04:57 +0200
committerGitHub <noreply@github.com>2019-05-10 19:04:57 +0200
commit30265bcf958337231d032ae1d403493a29379956 (patch)
tree599f4bca6069cae0e1133eb17074ff812d79eb2e /tests
parent833d2fda9e9a6379e270384bd30780b148cc6593 (diff)
parentab658b3ae8799915f3b6ab1cd71a3d4932ffd9d5 (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
);
}
}