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:
authorThomas Steur <tsteur@users.noreply.github.com>2020-11-19 06:29:45 +0300
committerGitHub <noreply@github.com>2020-11-19 06:29:45 +0300
commit0d6cd2c6eed967609c801dbc3a60072d9b23a879 (patch)
tree9cd63b2a28bb22d9699971a87420ab88ddd59a90 /tests
parent39cc6347165b520e058981a47e10dd36e851cd8a (diff)
When no deactivation date found, then rearchive as much as allowed (#16748)
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Integration/PluginTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Integration/PluginTest.php b/tests/PHPUnit/Integration/PluginTest.php
index 8a855a550c..756749ee01 100644
--- a/tests/PHPUnit/Integration/PluginTest.php
+++ b/tests/PHPUnit/Integration/PluginTest.php
@@ -64,7 +64,7 @@ class PluginTest extends IntegrationTestCase
$plugin->schedulePluginReArchiving();
$date = $this->getDateFromReArchiveList();
- $this->assertEquals($cronTime->getDatetime(), $date);
+ $this->assertNull($date);
}
public function test_schedulePluginReArchiving_shouldReArchiveFromNMonthsAgo_IfNoDecativationTimeOrCronTimeExists()