Skip to content
This repository was archived by the owner on Jul 6, 2023. It is now read-only.

Commit 69443fa

Browse files
authored
Merge pull request #245 from pontusmelke/4.1-test-failure
Fix failing test case
2 parents 3baa589 + 122602e commit 69443fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cypher-shell/src/integration-test/java/org/neo4j/shell/commands/CypherShellVerboseIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void cypherWithOrder() throws CommandException {
143143
shell.execute( "CALL db.awaitIndexes()" );
144144

145145
//when
146-
shell.execute("CYPHER RUNTIME=INTERPRETED EXPLAIN MATCH (n:Person) WHERE n.age >= 18 RETURN n.name, n.age");
146+
shell.execute("CYPHER RUNTIME=INTERPRETED EXPLAIN MATCH (n:Person) WHERE n.age >= 18 RETURN n.name, n.age ORDER BY n.age");
147147

148148
//then
149149
String actual = linePrinter.output();

0 commit comments

Comments
 (0)