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:
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;
}