summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Loader_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-03 17:09:01 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-03 17:09:01 +0100
commitcdac248e9cf7a8ea3ed426f189bb52254800bc2a (patch)
tree9a3c9cbb5fe2761c2c9469c861b95414eb9e3151 /tests/codeigniter/core/Loader_test.php
parent28daadeca8ebc889fd799ed8bb58293ebeb4fabd (diff)
It appears to break get_instance()->*_package_path*() usage which is very common. Need to figure out how to resolve this.
Diffstat (limited to 'tests/codeigniter/core/Loader_test.php')
-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 be223f97d..ecc5ca933 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -493,7 +493,7 @@ class Loader_test extends CI_TestCase {
);
$this->ci_vfs_create('autoload', '<?php $autoload = '.var_export($cfg, TRUE).';', $this->ci_app_root, 'config');
- $this->load->__construct();
+ $this->load->initialize();
// Verify path
$this->assertContains($path, $this->load->get_package_paths());