changed to lowercase array.
Signed-off-by:Heesung Ahn <ahn.heesung@gmail.com>
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index 6028521..5e64b62 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -39,7 +39,7 @@
$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));