Skip to content

Commit edd81a3

Browse files
committed
refined consistency tests
1 parent ef7d3c5 commit edd81a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Integration/ConsistencyTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,12 @@ public function testConsistencyMultiple(): void
8484

8585
self::assertEquals(1, $x);
8686
if ($i % 20 === 19) {
87-
$x = $tsx->run('RETURN 1 AS x')->first()->get('x');
8887
self::assertEquals(1, $x);
8988
for ($j = 0; $j < 9; ++$j) {
9089
$tsx = array_pop($tsxs);
90+
$x = $tsx->run('RETURN 1 AS x')->first()->get('x');
91+
92+
self::assertEquals(1, $x);
9193

9294
if ($j % 2 === 0) {
9395
$tsx->commit();

0 commit comments

Comments
 (0)