From 76dfcc83cebd544700e810df32425c87c7901309 Mon Sep 17 00:00:00 2001 From: Pontus Melke Date: Tue, 1 Sep 2020 13:31:26 +0200 Subject: [PATCH] Fix failing test case --- .../neo4j/shell/commands/CypherShellVerboseIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypher-shell/src/integration-test/java/org/neo4j/shell/commands/CypherShellVerboseIntegrationTest.java b/cypher-shell/src/integration-test/java/org/neo4j/shell/commands/CypherShellVerboseIntegrationTest.java index 5d998ed9..0cd7dec8 100644 --- a/cypher-shell/src/integration-test/java/org/neo4j/shell/commands/CypherShellVerboseIntegrationTest.java +++ b/cypher-shell/src/integration-test/java/org/neo4j/shell/commands/CypherShellVerboseIntegrationTest.java @@ -208,7 +208,7 @@ public void cypherWithOrder() throws CommandException { shell.execute( "CALL db.awaitIndexes()" ); //when - shell.execute("CYPHER RUNTIME=INTERPRETED EXPLAIN MATCH (n:Person) WHERE n.age >= 18 RETURN n.name, n.age"); + shell.execute("CYPHER RUNTIME=INTERPRETED EXPLAIN MATCH (n:Person) WHERE n.age >= 18 RETURN n.name, n.age ORDER BY n.age"); //then String actual = linePrinter.output();