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/Framework/Mock/TestConfig.php')
-rw-r--r--tests/PHPUnit/Framework/Mock/TestConfig.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/PHPUnit/Framework/Mock/TestConfig.php b/tests/PHPUnit/Framework/Mock/TestConfig.php
index 3676163e0d..7fe0302e11 100644
--- a/tests/PHPUnit/Framework/Mock/TestConfig.php
+++ b/tests/PHPUnit/Framework/Mock/TestConfig.php
@@ -58,9 +58,18 @@ class TestConfig extends Config
// Ensure local mods do not affect tests
if (empty($pathGlobal)) {
+ $general = $chain->getFrom($this->getLocalPath(), 'General');
+ $instanceId = isset($general['instance_id']) ? $general['instance_id'] : null;
+
$chain->set('Debug', $chain->getFrom($this->getGlobalPath(), 'Debug'));
$chain->set('mail', $chain->getFrom($this->getGlobalPath(), 'mail'));
- $chain->set('General', $chain->getFrom($this->getGlobalPath(), 'General'));
+
+ $globalGeneral = $chain->getFrom($this->getGlobalPath(), 'General');
+ if ($instanceId) {
+ $globalGeneral['instance_id'] = $instanceId;
+ }
+ $chain->set('General', $globalGeneral);
+
$chain->set('Segments', $chain->getFrom($this->getGlobalPath(), 'Segments'));
$chain->set('Tracker', $chain->getFrom($this->getGlobalPath(), 'Tracker'));
$chain->set('Deletelogs', $chain->getFrom($this->getGlobalPath(), 'Deletelogs'));