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:
authorStefan Giehl <stefan@matomo.org>2021-04-22 02:33:20 +0300
committerGitHub <noreply@github.com>2021-04-22 02:33:20 +0300
commit6d726c8005d6dd537ca7112b22d12ad70156af74 (patch)
treedeb4e7c06a3671954567b5a1bb0d59edc45304ef /plugins/SegmentEditor/tests
parentb66635e4e16f5af26171211b6196f1dff319e1c5 (diff)
Use full segment data to rearchive segment (#17478)
* Use full segment data to rearchive segment * fix test Co-authored-by: diosmosis <diosmosis@users.noreply.github.com>
Diffstat (limited to 'plugins/SegmentEditor/tests')
-rw-r--r--plugins/SegmentEditor/tests/Integration/SegmentEditorTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SegmentEditor/tests/Integration/SegmentEditorTest.php b/plugins/SegmentEditor/tests/Integration/SegmentEditorTest.php
index 09430ca9be..a8a2c5208d 100644
--- a/plugins/SegmentEditor/tests/Integration/SegmentEditorTest.php
+++ b/plugins/SegmentEditor/tests/Integration/SegmentEditorTest.php
@@ -165,7 +165,7 @@ class SegmentEditorTest extends IntegrationTestCase
);
$this->assertReArchivesQueued([
- ['idSites' => [1], 'pluginName' => null, 'report' => null, 'segment' => $updatedSegment['definition'], 'startDate' => null],
+ ['idSites' => [1], 'pluginName' => null, 'report' => null, 'segment' => $updatedSegment['definition'], 'startDate' => Date::factory('2013-01-01 00:00:00')->getTimestamp()],
]);
$newSegment = API::getInstance()->get($idSegment2);