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

Commit 7f3190f

Browse files
authored
Merge pull request #244 from pontusmelke/4.0-test-failure
Fix failing test case
2 parents dc2d282 + 76dfcc8 commit 7f3190f

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
@@ -208,7 +208,7 @@ public void cypherWithOrder() throws CommandException {
208208
shell.execute( "CALL db.awaitIndexes()" );
209209

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

213213
//then
214214
String actual = linePrinter.output();

0 commit comments

Comments
 (0)