Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/BulkTracking/tests/Integration/HandlerTest.php')
-rw-r--r--plugins/BulkTracking/tests/Integration/HandlerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/BulkTracking/tests/Integration/HandlerTest.php b/plugins/BulkTracking/tests/Integration/HandlerTest.php
index 1b2b46c8cb..a1992150ee 100644
--- a/plugins/BulkTracking/tests/Integration/HandlerTest.php
+++ b/plugins/BulkTracking/tests/Integration/HandlerTest.php
@@ -10,8 +10,8 @@ namespace Piwik\Plugins\BulkTracking\tests\Integration;
use Piwik\Exception\InvalidRequestParameterException;
use Piwik\Exception\UnexpectedWebsiteFoundException;
+use Piwik\Plugins\BulkTracking\tests\Mock\TrackerResponse;
use Piwik\Tests\Framework\Fixture;
-use Piwik\Tests\Framework\Mock\Tracker\Response;
use Piwik\Tests\Framework\Mock\Tracker\ScheduledTasksRunner;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
use Piwik\Tracker;
@@ -32,7 +32,7 @@ class HandlerTest extends IntegrationTestCase
private $handler;
/**
- * @var Response
+ * @var TrackerResponse
*/
private $response;
@@ -53,7 +53,7 @@ class HandlerTest extends IntegrationTestCase
Fixture::createWebsite('2014-01-01 00:00:00');
Tracker\Cache::deleteTrackerCache();
- $this->response = new Response();
+ $this->response = new TrackerResponse();
$this->handler = new Handler();
$this->handler->setResponse($this->response);
$this->tracker = new Tracker();