diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-23 16:16:10 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-23 16:16:10 +0200 |
commit | 519f87a07bd1fe3a9ec037f727628bb6c7c8e251 (patch) | |
tree | 1e3b41997d3629d0221b813024f673af47b60e4d /tests | |
parent | 9ab70a89b3ba7ee26faaae47410259e74391b593 (diff) |
Loader changes & optimizations related to issue #2551
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/core/Loader_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php index 18486cd05..9ad3ca6b9 100644 --- a/tests/codeigniter/core/Loader_test.php +++ b/tests/codeigniter/core/Loader_test.php @@ -28,7 +28,7 @@ class Loader_test extends CI_TestCase { $this->ci_vfs_create(ucfirst($lib), '<?php class '.$class.' { }', $this->ci_base_root, 'libraries'); // Test is_loaded fail - $this->assertFalse($this->load->is_loaded($lib)); + $this->assertFalse($this->load->is_loaded(ucfirst($lib))); // Test loading as an array. $this->assertNull($this->load->library(array($lib))); @@ -123,7 +123,7 @@ class Loader_test extends CI_TestCase { $this->assertEquals($cfg, $this->ci_obj->$obj->config); // Test is_loaded - $this->assertEquals($obj, $this->load->is_loaded($lib)); + $this->assertEquals($obj, $this->load->is_loaded(ucfirst($lib))); } // -------------------------------------------------------------------- |