diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-04-01 00:13:54 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-04-01 00:13:54 +0200 |
commit | d2797bbfe5ad7be70688286a523d212a2c910b72 (patch) | |
tree | 10b233bfc0a61a94fcb547963a1ca92300f32eb9 /tests/codeigniter/core | |
parent | 14e3523c60fd6c22d46c357c539e1954987bd744 (diff) | |
parent | a8b29ac370a308002bae0850baefc16af642b78e (diff) |
Merge pull request #2375 from samsonasik/fix/typo
fix typo : StdClass should be stdClass
Diffstat (limited to 'tests/codeigniter/core')
-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 dea01a555..e75d0d564 100644 --- a/tests/codeigniter/core/Loader_test.php +++ b/tests/codeigniter/core/Loader_test.php @@ -220,7 +220,7 @@ class Loader_test extends CI_TestCase { // Test name conflict $obj = 'conflict'; - $this->ci_obj->$obj = new StdClass(); + $this->ci_obj->$obj = new stdClass(); $this->setExpectedException( 'RuntimeException', 'CI Error: The model name you are loading is the name of a resource that is already being used: '.$obj |