Skip to content

Commit

Permalink
Fixed Doctrine DBAL storage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yann-eugone committed Jan 7, 2025
1 parent 2b84ad9 commit e3a1957
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,17 +368,17 @@ public function queries(): Generator
(new QueryBuilder())
->startTime(null, new \DateTimeImmutable('2019-06-30T22:00:00+0200')),
[
['import', '456'],
['import', '789'],
],
];
yield 'Filter start time boundaries' => [
(new QueryBuilder())
->startTime(
new \DateTimeImmutable('2019-07-01T13:00:01+0200'),
new \DateTimeImmutable('2019-06-30T22:00:00+0200'),
new \DateTimeImmutable('2019-07-01T17:29:29+0200'),
),
[
['import', '456'],
['export', '123'],
],
];
yield 'Filter end time lower boundary' => [
Expand Down

0 comments on commit e3a1957

Please sign in to comment.