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:
authormattab <matthieu.aubry@gmail.com>2018-01-12 13:57:10 +0300
committermattab <matthieu.aubry@gmail.com>2018-01-12 13:57:10 +0300
commit45c73bd0716749439b9bd4df7966c82a29658b49 (patch)
treee29a8d57d0784fee9febc192d857bef114e3b01f /tests
parentdcb18e8f3e5ddab977d62b6b16faa3da8b961e86 (diff)
Fix one system test
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Framework/TestRequest/Collection.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/PHPUnit/Framework/TestRequest/Collection.php b/tests/PHPUnit/Framework/TestRequest/Collection.php
index 287b4563a7..db19679f01 100644
--- a/tests/PHPUnit/Framework/TestRequest/Collection.php
+++ b/tests/PHPUnit/Framework/TestRequest/Collection.php
@@ -335,7 +335,9 @@ class Collection
if (!in_array('UserCountry.getLocationFromIP', $apiToCall) &&
!in_array('UserCountry.getCountryCodeMapping', $apiToCall)) {
- $this->apiNotToCall = array('API.getPiwikVersion',
+ $this->apiNotToCall = array(
+ 'API.getMatomoVersion',
+ 'API.getPiwikVersion',
'UserCountry.getLocationFromIP',
'UserCountry.getCountryCodeMapping');
} else {