diff options
author | Sharad Soni <sharadrsoni@gmail.com> | 2019-04-24 10:38:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 10:38:32 +0200 |
commit | 5be3b68b03334c0218752968417a7a3778ac58cf (patch) | |
tree | 4fb272680bdbeea4a7a93cef7564aa7fb44ca8de /tests/codeigniter | |
parent | b5e4b30ff267fe03273c859ba110cca0d8e72dac (diff) |
Update Log_test.php
Removed extra space, before and after concatenation.
Diffstat (limited to 'tests/codeigniter')
-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 bdff25bdc..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" . PHP_EOL + "LEVEL - Timestamp --> Message".PHP_EOL ); } } |