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:
authorKate Butler <kate@innocraft.com>2019-04-03 05:52:20 +0300
committerGitHub <noreply@github.com>2019-04-03 05:52:20 +0300
commit062eeb0cfa3fb9e4aa0930822a86996b55422b5a (patch)
treee5ed49b30d8fe7acc377e1e4d586d423270e3b1d /tests
parent7172c71bb95e1a3139bf807773abc6846fedbdf0 (diff)
Fix build (#14310)
* Fix build
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/System/ImportLogsTest.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/PHPUnit/System/ImportLogsTest.php b/tests/PHPUnit/System/ImportLogsTest.php
index e90ba929eb..94d542a9f9 100644
--- a/tests/PHPUnit/System/ImportLogsTest.php
+++ b/tests/PHPUnit/System/ImportLogsTest.php
@@ -87,7 +87,9 @@ class ImportLogsTest extends SystemTestCase
'periods' => 'range',
'otherRequestParameters' => array(
'filter_limit' => 1000
- )));
+ ),
+ 'xmlFieldsToRemove' => array('fingerprint')
+ ));
// imported via --replay-tracking --idsite=3 should ignore idSite from logs and use fixed idSite instead
$apis[] = array($apiMethods, array(
@@ -97,7 +99,8 @@ class ImportLogsTest extends SystemTestCase
'otherRequestParameters' => array(
'filter_limit' => 1000
),
- 'testSuffix' => '_siteIdThree_TrackedUsingLogReplayWithFixedSiteId'));
+ 'testSuffix' => '_siteIdThree_TrackedUsingLogReplayWithFixedSiteId'
+ ));
return $apis;
}