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:
Diffstat (limited to 'tests/PHPUnit/System/BlobReportLimitingTest.php')
-rw-r--r--tests/PHPUnit/System/BlobReportLimitingTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/PHPUnit/System/BlobReportLimitingTest.php b/tests/PHPUnit/System/BlobReportLimitingTest.php
index 78e9fcdea8..34b63f2426 100644
--- a/tests/PHPUnit/System/BlobReportLimitingTest.php
+++ b/tests/PHPUnit/System/BlobReportLimitingTest.php
@@ -46,7 +46,7 @@ class BlobReportLimitingTest extends SystemTestCase
'Resolution.getResolution', 'Resolution.getConfiguration', 'DevicesDetection.getOsVersions',
'DevicesDetection.getBrowserVersions',
'UserCountry.getRegion', 'UserCountry.getCity',
- 'UserId.getUsers',
+ 'UserId.getUsers', 'Events', 'Contents',
);
$ecommerceApi = array('Goals.getItemsSku', 'Goals.getItemsName', 'Goals.getItemsCategory');
@@ -187,6 +187,8 @@ class BlobReportLimitingTest extends SystemTestCase
$generalConfig['datatable_archiving_maximum_rows_subtable_actions'] = 2;
$generalConfig['datatable_archiving_maximum_rows_standard'] = 3;
$generalConfig['datatable_archiving_maximum_rows_userid_users'] = 3;
+ $generalConfig['datatable_archiving_maximum_rows_events'] = 3;
+ $generalConfig['datatable_archiving_maximum_rows_subtable_events'] = 2;
$generalConfig['archiving_ranking_query_row_limit'] = 50000;
// Should be more than the datatable_archiving_maximum_rows_actions as code will take the max of these two
$generalConfig['datatable_archiving_maximum_rows_site_search'] = 5;