summaryrefslogtreecommitdiffstats
path: root/tests/mocks
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-10 06:11:41 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-10 06:11:41 +0200
commit62fd52d3cfeea4a2ec73ac5b943e84eeb38953d2 (patch)
tree2610b2db67feb3a395352af201330bf4cf1582bd /tests/mocks
parentbf94058d537efc78ed2df7009db8b3261ff44619 (diff)
Revert a change in tests/mocks/core/common.php
Diffstat (limited to 'tests/mocks')
-rw-r--r--tests/mocks/core/common.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/mocks/core/common.php b/tests/mocks/core/common.php
index 8466e47f8..55506a1f6 100644
--- a/tests/mocks/core/common.php
+++ b/tests/mocks/core/common.php
@@ -18,7 +18,8 @@ if ( ! function_exists('get_config'))
function &get_config()
{
$test = CI_TestCase::instance();
- return $test->ci_get_config();
+ $config = $test->ci_get_config();
+ return $config;
}
}