Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Nov 26, 2021
1 parent 8bd9f5f commit be0e569
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Persistence/SqlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ public function testSameRowFieldStability(): void
$randRow0 = $export[0]['rand'];
$randRow1 = $export[1]['rand'];
$this->assertNotSame($randRow0, $randRow1); // $this->assertGreaterThan($randRow0, $randRow1);
// $this->assertNotSame($randRow0, $export[0]['rand_independent']); // TODO this can be the same, depending on how we implement it
// TODO this can be the same, depending on how we implement it
// already stable under some circumstances on PostgreSQL http://sqlfiddle.com/#!17/4b040/4
// $this->assertNotSame($randRow0, $export[0]['rand_independent']);

$this->assertSame($randRow0, $export[0]['rand2']);
$this->assertSame($randRow1, $export[1]['rand2']);
Expand Down

0 comments on commit be0e569

Please sign in to comment.