You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$booleanMock = $this->getQueryConvertableMock(BooleanType::class, "a > b");
@@ -619,8 +620,8 @@ public function testBuild(): void
619
620
->returning(["#" => $nodeMock])
620
621
->create([$pathMock, $nodeMock])
621
622
->create($pathMock)
622
-
->delete([$nodeMock, $nodeMock])
623
-
->detachDelete([$nodeMock, $nodeMock])
623
+
->delete([$variableMock, $variableMock])
624
+
->detachDelete([$variableMock, $variableMock])
624
625
->limit($numeralMock)
625
626
->merge($nodeMock)
626
627
->optionalMatch([$nodeMock, $nodeMock])
@@ -631,7 +632,7 @@ public function testBuild(): void
631
632
->with(["#" => $nodeMock])
632
633
->build();
633
634
634
-
$this->assertSame("MATCH (a)->(b), (a) RETURN a AS `#` CREATE (a)->(b), (a) CREATE (a)->(b) DELETE (a), (a) DETACH DELETE (a), (a) LIMIT 12 MERGE (a) OPTIONAL MATCH (a), (a) ORDER BY a.b, a.b DESCENDING REMOVE a.b WHERE a > b WITH a AS `#`", $statement);
635
+
$this->assertSame("MATCH (a)->(b), (a) RETURN a AS `#` CREATE (a)->(b), (a) CREATE (a)->(b) DELETE a, a DETACH DELETE a, a LIMIT 12 MERGE (a) OPTIONAL MATCH (a), (a) ORDER BY a.b, a.b DESCENDING REMOVE a.b WHERE a > b WITH a AS `#`", $statement);
635
636
}
636
637
637
638
publicfunctiontestBuildEmpty(): void
@@ -839,21 +840,24 @@ public function testWikiExamples(): void
0 commit comments