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
path: root/tests
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-03-31 07:03:13 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-03-31 07:03:13 +0400
commit8574db21a5bca609782d8091ec0d4f14bf255373 (patch)
treebfd83430cf1affd74136e33dd7b72bf2b003e0f9 /tests
parent80053e05368b6293536aa65f7479e287725cb197 (diff)
does this make a difference? trying to fix the build
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/TestingEnvironment.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/PHPUnit/TestingEnvironment.php b/tests/PHPUnit/TestingEnvironment.php
index 92d0c432f9..3c3ef00e43 100644
--- a/tests/PHPUnit/TestingEnvironment.php
+++ b/tests/PHPUnit/TestingEnvironment.php
@@ -121,7 +121,9 @@ class Piwik_TestingEnvironment
$config->Plugins_Tracker = array('Plugins_Tracker' => $trackerPluginsToLoad);
- $config->log['log_writers'] = array('file');
+ $log = $config->log;
+ $log['log_writers'] = array('file');
+ $config->log = $log;
$manager->unloadPlugins();