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 'tests/PHPUnit/Integration/CacheIdTest.php')
-rw-r--r--tests/PHPUnit/Integration/CacheIdTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/Integration/CacheIdTest.php b/tests/PHPUnit/Integration/CacheIdTest.php
index 3795005148..77d150b2d6 100644
--- a/tests/PHPUnit/Integration/CacheIdTest.php
+++ b/tests/PHPUnit/Integration/CacheIdTest.php
@@ -9,8 +9,8 @@
namespace Piwik\Tests\Integration;
use Piwik\CacheId;
+use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
-use Piwik\Translate;
/**
* @group Cache
@@ -20,12 +20,12 @@ class CacheIdTest extends IntegrationTestCase
{
public function setUp()
{
- Translate::loadAllTranslations();
+ Fixture::loadAllTranslations();
}
public function tearDown()
{
- Translate::reset();
+ Fixture::resetTranslations();
}
public function test_languageAware_shouldAppendTheLoadedLanguage()