Unverified Commit 1a0d6efe authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3541487 by alexpott: Fix EntityQueryTest on SQLite and Postgres

(cherry picked from commit 1b1133d1)
parent 392338a8
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -385,6 +385,7 @@ public function testEntityQuery(): void {
      ->getQuery()
      ->latestRevision()
      ->notExists("$figures.color")
      ->sort('id')
      ->accessCheck(TRUE)
      ->execute();
    $expected = [16 => '4', 8 => '8', 20 => '12'];
@@ -400,6 +401,7 @@ public function testEntityQuery(): void {
    $results = $this->queryResults = $this->storage
      ->getQuery()
      ->latestRevision()
      ->sort('id')
      ->notExists("$figures.color")
      ->accessCheck(TRUE)
      ->execute();