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

Commit 7cb3914

Browse files
committed
Fix incorrect test assertion.
1 parent 69004ca commit 7cb3914

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/CypherShellPlainIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public void cypherWithProfileWithMemory() throws CommandException
108108
//then
109109
String actual = linePrinter.output();
110110
System.out.println( actual );
111-
assertThat( actual, containsString( "Memory (Bytes): 0" ) );
111+
assertThat( actual, containsString( "Memory (Bytes): " ) );
112112
}
113113

114114
@Test

0 commit comments

Comments
 (0)