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:
authordizzy <diosmosis@users.noreply.github.com>2021-08-10 15:50:29 +0300
committerGitHub <noreply@github.com>2021-08-10 15:50:29 +0300
commitdc696663d4edd14e3b3fed8771e79413ab167450 (patch)
treed23a50ca068ace681ae0f6c7b9bc70225dc7a2c4 /plugins/PrivacyManager
parent1c287f118dcccbaea6385550e2c1e94969ec2618 (diff)
Fixing some test failures (#17852)
* fix controller test * debug travis failure * debug some more * more debugging * more debugging * another debug * another debug * more debug + fix test? * remove debug changes * remove forced failure * ui test change, check status in assert for more information in test output * check image magick status AFTER comparison threshold check * try to debug test performance on travis * try to speed up some tests * fix test change * fix test * update two screenshots * update UI test again and fix random failure hopefully * try to get rid of some more random failures * some more debugging * try fixing some more random failures * stop using screenshotSelector in some tests since it (inexplicably) cant find jquery on the test page + mysqli test * another ui test tweak * trigger new build * try fixing more random failures * updates expected test file Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'plugins/PrivacyManager')
-rw-r--r--plugins/PrivacyManager/tests/Integration/DataPurgingTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/PrivacyManager/tests/Integration/DataPurgingTest.php b/plugins/PrivacyManager/tests/Integration/DataPurgingTest.php
index 0d39cb36d6..6c29f6de17 100644
--- a/plugins/PrivacyManager/tests/Integration/DataPurgingTest.php
+++ b/plugins/PrivacyManager/tests/Integration/DataPurgingTest.php
@@ -101,6 +101,8 @@ class DataPurgingTest extends IntegrationTestCase
{
parent::setUp();
+ $GLOBALS['DISABLE_GET_TABLES_INSTALLED_EVENTS_FOR_TEST'] = 1;
+
LogDataPurger::$selectSegmentSize = 2;
ReportsPurger::$selectSegmentSize = 2;
@@ -142,6 +144,8 @@ class DataPurgingTest extends IntegrationTestCase
public function tearDown(): void
{
+ $GLOBALS['DISABLE_GET_TABLES_INSTALLED_EVENTS_FOR_TEST'] = 0;
+
parent::tearDown();
$tempTableName = Common::prefixTable(RawLogDao::DELETE_UNUSED_ACTIONS_TEMP_TABLE_NAME);