summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter
diff options
context:
space:
mode:
authorHeesung Ahn <ahn.heesung@gmail.com>2015-03-30 18:10:00 +0200
committerHeesung Ahn <ahn.heesung@gmail.com>2015-03-30 18:10:00 +0200
commit90e07bdaa034d98e23378c51105a8aea85878d07 (patch)
tree6af32a8fb4ac99c733da321668e4835c642b716f /tests/codeigniter
parent1dfd2f9eba977870da331d4a0f281c64c4218267 (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.php2
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));