From 577e53feff2c7d9ea74c682e5795196c916e7687 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Tue, 24 Apr 2018 14:45:13 +0300 Subject: Fix test_like_set_side() unit test (dataProvider wasn't working) --- tests/mocks/ci_testcase.php | 4 ++-- 1 file 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(); } -- cgit v1.2.3-24-g4f1b