diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2017-12-08 20:25:02 +0100 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2017-12-20 17:43:45 +0100 |
commit | dfa52f3ed31696c58fdc85273f4408559233b19e (patch) | |
tree | 63ca4ac93f9fd6f3afe5a91ef25701391ec9e593 /tests/codeigniter/core/Log_test.php | |
parent | 3ecfcaa94bbae55fec8c2c9bbf8524c49816342f (diff) |
Refactoring tests
Diffstat (limited to 'tests/codeigniter/core/Log_test.php')
-rw-r--r-- | tests/codeigniter/core/Log_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codeigniter/core/Log_test.php b/tests/codeigniter/core/Log_test.php index d5a6fcb6b..103af342b 100644 --- a/tests/codeigniter/core/Log_test.php +++ b/tests/codeigniter/core/Log_test.php @@ -28,7 +28,7 @@ class Log_test extends CI_TestCase { $this->assertEquals($date_fmt->getValue($instance), 'd.m.Y'); $this->assertEquals($file_ext->getValue($instance), 'php'); $this->assertEquals($file_perms->getValue($instance), 0644); - $this->assertEquals($enabled->getValue($instance), FALSE); + $this->assertFalse($enabled->getValue($instance)); $this->ci_set_config('log_path', ''); $this->ci_set_config('log_threshold', '0'); @@ -60,4 +60,4 @@ class Log_test extends CI_TestCase { "LEVEL - Timestamp --> Message\n" ); } -}
\ No newline at end of file +} |