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
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2020-08-19 01:32:25 +0300
committerGitHub <noreply@github.com>2020-08-19 01:32:25 +0300
commit970e28aed729c316ff050460757a545f8a540095 (patch)
treeca2d828fe060680e6625bad971a70f9a3829897d /tests/PHPUnit/Fixtures
parent0cc279780b7c2c881fbab21b0c5fac122d3d45ef (diff)
url decode value in requestcommand (#16301)
* url decode value in requestcommand * modify test segment so it matches a couple visits and not every visit * update expected test files * another update * another update * last time i hope * hopefully not random * make segment more restrcitive so sorting is not an issue * another test update
Diffstat (limited to 'tests/PHPUnit/Fixtures')
-rw-r--r--tests/PHPUnit/Fixtures/ManySitesImportedLogs.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php b/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
index c58528bc07..1d3a48f01e 100644
--- a/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
+++ b/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
@@ -72,8 +72,8 @@ class ManySitesImportedLogs extends Fixture
}
}
- const SEGMENT_PRE_ARCHIVED = 'visitCount<=5;visitorType!=non-existing-type;daysSinceFirstVisit<=50';
- const SEGMENT_PRE_ARCHIVED_CONTAINS_ENCODED = 'visitCount<=5;visitorType!=re%2C%3Btest%20is%20encoded;daysSinceFirstVisit<=50';
+ const SEGMENT_PRE_ARCHIVED = 'visitCount<=5;pageUrl=@/blog/;countryCode==jp';
+ const SEGMENT_PRE_ARCHIVED_CONTAINS_ENCODED = 'visitCount<=5;pageUrl=@%2Fblog%2F;countryCode==jp';
public function getDefaultSegments()
{