summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2017-06-28 10:49:01 +0200
committerAndrey Andreev <narf@devilix.net>2017-06-28 10:49:01 +0200
commitbe0280d02a408a8b4aeb6aee10d9dd936f978ce2 (patch)
tree299ba5d5a322d01bcaa695df98125063b12ca40b /tests
parentdb89c20721b3b66671db9ff4d3b6c9a6de352533 (diff)
#5164 fix for stock libraries
Diffstat (limited to 'tests')
-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 241c415b3..8c5bb3021 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -99,7 +99,7 @@ class Loader_test extends CI_TestCase {
// Test reloading
unset($this->ci_obj->$name);
$this->assertInstanceOf('CI_Loader', $this->load->library($lib));
- $this->assertObjectNotHasAttribute($name, $this->ci_obj);
+ $this->assertObjectHasAttribute($name, $this->ci_obj);
// Create baseless library
$name = 'ext_baseless_lib';