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-18 11:23:51 +0300
committerdiosmosis <benaka@piwik.pro>2015-06-20 03:07:50 +0300
commita75bc3b621337e93d899c011f3f8a260e6cb13e4 (patch)
tree203b361557ea6d8896abcec761bcfdbbd8c8c9e5 /tests/PHPUnit/Framework/Mock
parent72df01f173eaf29f24e00dddee2dbf5de5351cdc (diff)
Fix order of parent class call in TestConfig.
Diffstat (limited to 'tests/PHPUnit/Framework/Mock')
-rw-r--r--tests/PHPUnit/Framework/Mock/TestConfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Framework/Mock/TestConfig.php b/tests/PHPUnit/Framework/Mock/TestConfig.php
index 7e1480cd8d..6b969e00a5 100644
--- a/tests/PHPUnit/Framework/Mock/TestConfig.php
+++ b/tests/PHPUnit/Framework/Mock/TestConfig.php
@@ -31,7 +31,7 @@ class TestConfig extends Config
public function reload($pathLocal = null, $pathGlobal = null, $pathCommon = null)
{
- parent::reload($pathGlobal, $pathLocal, $pathCommon);
+ parent::reload($pathLocal, $pathGlobal, $pathCommon);
$this->setTestEnvironment();
}