diff options
author | Heesung Ahn <ahn.heesung@gmail.com> | 2015-03-30 18:10:00 +0200 |
---|---|---|
committer | Heesung Ahn <ahn.heesung@gmail.com> | 2015-03-30 18:10:00 +0200 |
commit | 90e07bdaa034d98e23378c51105a8aea85878d07 (patch) | |
tree | 6af32a8fb4ac99c733da321668e4835c642b716f /tests/codeigniter | |
parent | 1dfd2f9eba977870da331d4a0f281c64c4218267 (diff) |
changed to lowercase array.
Signed-off-by:Heesung Ahn <ahn.heesung@gmail.com>
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/core/Loader_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php index 6028521d1..5e64b62b9 100644 --- a/tests/codeigniter/core/Loader_test.php +++ b/tests/codeigniter/core/Loader_test.php @@ -39,7 +39,7 @@ class Loader_test extends CI_TestCase { $this->assertAttributeInstanceOf($class, $lib, $this->ci_obj); // Create library in VFS - $lib = Array('unit_test_lib' => 'unit_test_lib'); + $lib = array('unit_test_lib' => 'unit_test_lib'); // Test loading as an array (int). $this->assertInstanceOf('CI_Loader', $this->load->library($lib)); |