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:
authorBen <ben.burgess@innocraft.com>2022-11-07 10:39:23 +0300
committerBen <ben.burgess@innocraft.com>2022-11-07 10:39:23 +0300
commitd6e7b82d728c539c9cb17ca413a521b84a6b282b (patch)
tree2f23e6eb7246e358187a68802bb2691b97a5005c
parent1b8dbf1460712d1e61b2c0d7ebed18eb6cae56c9 (diff)
Removed GA3 detection from consent manager detection test
-rw-r--r--tests/PHPUnit/Fixtures/EmptySiteWithSiteContentDetection.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/PHPUnit/Fixtures/EmptySiteWithSiteContentDetection.php b/tests/PHPUnit/Fixtures/EmptySiteWithSiteContentDetection.php
index b14c2fd011..0875812223 100644
--- a/tests/PHPUnit/Fixtures/EmptySiteWithSiteContentDetection.php
+++ b/tests/PHPUnit/Fixtures/EmptySiteWithSiteContentDetection.php
@@ -12,7 +12,7 @@ use Piwik\SiteContentDetector;
/**
* Fixture that adds one site with no visits and configures site content detection test data so that the
- * 'Osano' consent manager and GA3 will be detected on the site.
+ * 'Osano' consent manager will be detected on the site.
*/
class EmptySiteWithSiteContentDetection extends Fixture
{
@@ -31,8 +31,9 @@ class EmptySiteWithSiteContentDetection extends Fixture
'consentManagerName' => 'Osano',
'consentManagerUrl' => 'https://matomo.org/faq/how-to/using-osano-consent-manager-with-matomo',
'isConnected' => true,
- 'ga3' => true,
- 'ga4' => false
+ 'ga3' => false,
+ 'ga4' => false,
+ 'gtm' => false
]);
}