summaryrefslogtreecommitdiffstats
path: root/tests/mocks
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2013-04-01 00:13:54 +0200
committerAndrey Andreev <narf@bofh.bg>2013-04-01 00:13:54 +0200
commitd2797bbfe5ad7be70688286a523d212a2c910b72 (patch)
tree10b233bfc0a61a94fcb547963a1ca92300f32eb9 /tests/mocks
parent14e3523c60fd6c22d46c357c539e1954987bd744 (diff)
parenta8b29ac370a308002bae0850baefc16af642b78e (diff)
Merge pull request #2375 from samsonasik/fix/typo
fix typo : StdClass should be stdClass
Diffstat (limited to 'tests/mocks')
-rw-r--r--tests/mocks/ci_testcase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mocks/ci_testcase.php b/tests/mocks/ci_testcase.php
index f16492945..ad4fe5ac3 100644
--- a/tests/mocks/ci_testcase.php
+++ b/tests/mocks/ci_testcase.php
@@ -27,7 +27,7 @@ class CI_TestCase extends PHPUnit_Framework_TestCase {
public function __construct()
{
parent::__construct();
- $this->ci_instance = new StdClass();
+ $this->ci_instance = new stdClass();
}
// --------------------------------------------------------------------