Fix test_like_set_side() unit test (dataProvider wasn't working)
diff --git a/tests/mocks/ci_testcase.php b/tests/mocks/ci_testcase.php
index e5c8632..4f478fb 100644
--- a/tests/mocks/ci_testcase.php
+++ b/tests/mocks/ci_testcase.php
@@ -24,9 +24,9 @@
 
 	// --------------------------------------------------------------------
 
-	public function __construct()
+	public function __construct($name = null, array $data = array(), $dataName = '')
 	{
-		parent::__construct();
+		parent::__construct($name, $data, $dataName);
 		$this->ci_instance = new stdClass();
 	}