Skip to content

Commit

Permalink
fix(orm): orm inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Aug 4, 2023
1 parent 2554f3a commit 1f7148c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Doctrine/ORM/Result/FloatResultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function null_result(): void

$this->assertNull($result->first());
$this->assertSame(0.0, $result->first(0.0));
$this->assertSame([null], $result->eager()->all());
$this->assertSame([], \array_filter($result->eager()->all()));
}

protected function expectedValueAt(int $position)
Expand Down

0 comments on commit 1f7148c

Please sign in to comment.