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:15:21 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-03-31 07:15:21 +0400
commitcfc819bc4aa48c39ddbf86befe4c910d3a8932d9 (patch)
tree4546569e36f7aad9024869e34b75fb2f9eec9574 /tests
parent8574db21a5bca609782d8091ec0d4f14bf255373 (diff)
trying to log only to screen in this web test
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Integration/ArchiveWebTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Integration/ArchiveWebTest.php b/tests/PHPUnit/Integration/ArchiveWebTest.php
index ba84534cb2..6598f11df8 100644
--- a/tests/PHPUnit/Integration/ArchiveWebTest.php
+++ b/tests/PHPUnit/Integration/ArchiveWebTest.php
@@ -36,7 +36,7 @@ class Test_Piwik_Integration_ArchiveWebTest extends IntegrationTestCase
$urlTmp = Option::get('piwikUrl');
Option::set('piwikUrl', $host . 'tests/PHPUnit/proxy/index.php');
- $output = file_get_contents($host . 'tests/PHPUnit/proxy/archive.php?token_auth=' . $token);
+ $output = file_get_contents($host . 'tests/PHPUnit/proxy/archive.php?token_auth=' . $token . '&forcelogtoscreen=1');
if (!empty($urlTmp)) {
Option::set('piwikUrl', $urlTmp);