From b08cacacb7385671b275ee7a1f7d4f6c6867ee20 Mon Sep 17 00:00:00 2001 From: Sharad Soni Date: Tue, 23 Apr 2019 16:58:42 +0530 Subject: Updated test case for Log Class Also added `\r\n` to pass the test case --- tests/codeigniter/core/Log_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/codeigniter/core/Log_test.php b/tests/codeigniter/core/Log_test.php index 103af342b..de0f3800d 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\r\n" ); } } -- cgit v1.2.3-24-g4f1b