We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef7d3c5 commit edd81a3Copy full SHA for edd81a3
tests/Integration/ConsistencyTest.php
@@ -84,10 +84,12 @@ public function testConsistencyMultiple(): void
84
85
self::assertEquals(1, $x);
86
if ($i % 20 === 19) {
87
- $x = $tsx->run('RETURN 1 AS x')->first()->get('x');
88
89
for ($j = 0; $j < 9; ++$j) {
90
$tsx = array_pop($tsxs);
+ $x = $tsx->run('RETURN 1 AS x')->first()->get('x');
91
+
92
+ self::assertEquals(1, $x);
93
94
if ($j % 2 === 0) {
95
$tsx->commit();
0 commit comments