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/Insights/tests/Integration/ApiTest.php')
-rw-r--r--plugins/Insights/tests/Integration/ApiTest.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/Insights/tests/Integration/ApiTest.php b/plugins/Insights/tests/Integration/ApiTest.php
index 5c3f616513..774a9e54c5 100644
--- a/plugins/Insights/tests/Integration/ApiTest.php
+++ b/plugins/Insights/tests/Integration/ApiTest.php
@@ -11,11 +11,10 @@ namespace Piwik\Plugins\Insights\tests\Integration;
use Piwik\API\Request as ApiRequest;
use Piwik\Cache as PiwikCache;
use Piwik\DataTable;
-use Piwik\DataTable\Row;
use Piwik\Plugins\Insights\API;
use Piwik\Plugins\Insights\tests\Fixtures\SomeVisitsDifferentPathsOnTwoDays;
+use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\TestCase\SystemTestCase;
-use Piwik\Translate;
/**
* @group Insights
@@ -42,7 +41,7 @@ class ApiTest extends SystemTestCase
PiwikCache::flushAll();
- Translate::loadAllTranslations();
+ Fixture::loadAllTranslations();
$this->api = API::getInstance();
}
@@ -50,7 +49,7 @@ class ApiTest extends SystemTestCase
{
parent::tearDown();
- Translate::reset();
+ Fixture::resetTranslations();
}
/**