Skip to content

Commit 9e57cfd

Browse files
committed
fix(assignments): Fix tests
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
1 parent 09f9f73 commit 9e57cfd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/Db/AssignmentTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public function testIsDue(string $rrule, string $startsAt, string $lastRunAt, st
2525

2626
public function isDueDataProvider(): array {
2727
return [
28-
['FREQ=DAILY', '@0', '@0', 'UTC', '1970-01-02T00:00:00Z', true],
28+
['FREQ=DAILY', '1970-01-02T00:00:00Z', '@0', 'UTC', '1970-01-02T00:00:00Z', true],
29+
['FREQ=DAILY', '@0', '@0', 'UTC', '1970-01-02T00:00:00Z', false],
2930
['FREQ=DAILY;BYHOUR=8', '@0', '@0', 'UTC', '1970-01-01T08:00:00Z', true],
3031
['FREQ=DAILY;BYHOUR=8', '@0', '1970-01-01T08:00:00Z', 'UTC', '1970-01-01T08:00:01Z', false],
3132
['FREQ=DAILY;BYHOUR=8', '@0', '@0', '+0200', '1970-01-01T10:00:00Z', true],

0 commit comments

Comments
 (0)