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:
authordiosmosis <benaka@piwik.pro>2015-06-01 08:31:03 +0300
committerdiosmosis <benaka@piwik.pro>2015-06-05 23:04:58 +0300
commit53a29ed2338094321bb077574e369e62231d62da (patch)
tree4a38da280d49963c8c30fb7daf83dead9af37269 /tests/PHPUnit/Framework/Fixture.php
parent447ff12b141f1bba9cab78396cb12ff2b98b595c (diff)
Rename TestingEnvironment to TestingEnvironmentVariables.
Diffstat (limited to 'tests/PHPUnit/Framework/Fixture.php')
-rw-r--r--tests/PHPUnit/Framework/Fixture.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/Framework/Fixture.php b/tests/PHPUnit/Framework/Fixture.php
index 0c251dcfea..5f070f2d32 100644
--- a/tests/PHPUnit/Framework/Fixture.php
+++ b/tests/PHPUnit/Framework/Fixture.php
@@ -48,7 +48,7 @@ use Piwik\Tracker\Cache;
use Piwik\Translate;
use Piwik\Url;
use PHPUnit_Framework_Assert;
-use Piwik\Tests\Framework\TestingEnvironment;
+use Piwik\Tests\Framework\TestingEnvironmentVariables;
use PiwikTracker;
use Piwik_LocalTracker;
use Piwik\Updater;
@@ -287,7 +287,7 @@ class Fixture extends \PHPUnit_Framework_Assert
public function getTestEnvironment()
{
if ($this->testEnvironment === null) {
- $this->testEnvironment = new TestingEnvironment();
+ $this->testEnvironment = new TestingEnvironmentVariables();
$this->testEnvironment->delete();
if (getenv('PIWIK_USE_XHPROF') == 1) {
@@ -348,7 +348,7 @@ class Fixture extends \PHPUnit_Framework_Assert
public static function loadAllPlugins($testEnvironment = null, $testCaseClass = false, $extraPluginsToLoad = array())
{
if (empty($testEnvironment)) {
- $testEnvironment = new TestingEnvironment();
+ $testEnvironment = new TestingEnvironmentVariables();
}
DbHelper::createTables();