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

Commit 130072a

Browse files
committed
Adapt to error message change in integration test
1 parent bb3d239 commit 130072a

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public void switchingDatabaseAfterRollbackTransactionWorks() throws CommandExcep
108108
@Test
109109
public void switchingToNonExistingDatabaseShouldGiveErrorResponseFromServer() throws CommandException {
110110
thrown.expect(ClientException.class);
111-
thrown.expectMessage("The database requested does not exist.");
111+
thrown.expectMessage("Database does not exist");
112112

113113
useCommand.execute("this_database_name_does_not_exist_in_test_container");
114114
}

0 commit comments

Comments
 (0)