Skip to content

Commit

Permalink
TransactionTest::testNotAllChildrenHasNextItem(): cleanup fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zozlak committed Dec 10, 2024
1 parent 046046d commit 147f848
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/TransactionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public function testNotAllChildrenHasNextItem(): void {
}
self::$repo->commit();
$this->assertTrue(true);
$this->toDelete = array_merge($this->toDelete, [$cr, $rr1, $rr2, $rr3]);
$this->toDelete = array_merge($this->toDelete, $r);

// correct hasNextItem
self::$repo->begin();
Expand Down Expand Up @@ -430,5 +430,7 @@ public function testNotAllChildrenHasNextItem(): void {
$this->assertStringStartsWith("Collections containing incomplete $nextProp sequence: ", $msg);
$this->assertStringEndsWith(" (2 < 3)", $msg);
}
// give transaction controller a little time
sleep(1);
}
}

0 comments on commit 147f848

Please sign in to comment.