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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-06-18 19:12:20 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-06-18 19:12:20 +0300
commit164c62ff55d797f3d719c527031c5f312b2d84b5 (patch)
tree364a94386d4eb6d0b122de616e8ae957b22d2771 /tests/PHPUnit/Framework/TestCase
parent27f468c2ff91b57097598192d5f2cc246675f946 (diff)
Remove usage of UnitTestCase
Diffstat (limited to 'tests/PHPUnit/Framework/TestCase')
-rw-r--r--tests/PHPUnit/Framework/TestCase/IntegrationTestCase.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/PHPUnit/Framework/TestCase/IntegrationTestCase.php b/tests/PHPUnit/Framework/TestCase/IntegrationTestCase.php
index 1dafb3580b..a523deda05 100644
--- a/tests/PHPUnit/Framework/TestCase/IntegrationTestCase.php
+++ b/tests/PHPUnit/Framework/TestCase/IntegrationTestCase.php
@@ -13,6 +13,7 @@ use Piwik\Config;
use Piwik\Db;
use Piwik\Tests\Framework\Fixture;
use Piwik\Cache as PiwikCache;
+use Piwik\Tests\Framework\TestingEnvironmentVariables;
/**
* Tests extending IntegrationTestCase are much slower to run: the setUp will
@@ -77,7 +78,7 @@ abstract class IntegrationTestCase extends SystemTestCase
self::$fixture->extraDefinitions = array_merge(static::provideContainerConfigBeforeClass(), $this->provideContainerConfig());
self::$fixture->createEnvironmentInstance();
- Fixture::loadAllPlugins(new \Piwik\Tests\Framework\TestingEnvironmentVariables(), get_class($this), self::$fixture->extraPluginsToLoad);
+ Fixture::loadAllPlugins(new TestingEnvironmentVariables(), get_class($this), self::$fixture->extraPluginsToLoad);
Access::getInstance()->setSuperUserAccess(true);