summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2018-04-24 13:45:13 +0200
committerAndrey Andreev <narf@devilix.net>2018-04-24 13:45:13 +0200
commit577e53feff2c7d9ea74c682e5795196c916e7687 (patch)
tree54efeb254f440bde2bb58989175497f31ed5e9ba
parent0a715d6df5d6d9de8da861dccd1dd5f16e738efc (diff)
Fix test_like_set_side() unit test (dataProvider wasn't working)
-rw-r--r--tests/mocks/ci_testcase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mocks/ci_testcase.php b/tests/mocks/ci_testcase.php
index e5c86322c..4f478fb4e 100644
--- a/tests/mocks/ci_testcase.php
+++ b/tests/mocks/ci_testcase.php
@@ -24,9 +24,9 @@ class CI_TestCase extends PHPUnit_Framework_TestCase {
// --------------------------------------------------------------------
- public function __construct()
+ public function __construct($name = null, array $data = array(), $dataName = '')
{
- parent::__construct();
+ parent::__construct($name, $data, $dataName);
$this->ci_instance = new stdClass();
}