We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f2f9d3 commit 732b8adCopy full SHA for 732b8ad
driver/src/test/java/org/neo4j/driver/v1/integration/ErrorIT.java
@@ -48,9 +48,7 @@ public void shouldThrowHelpfulSyntaxError() throws Throwable
48
{
49
// Expect
50
exception.expect( ClientException.class );
51
- exception.expectMessage( "Invalid input 'i': expected <init> (line 1, column 1 (offset: 0))\n" +
52
- "\"invalid statement\"\n" +
53
- " ^" );
+ exception.expectMessage( "Invalid input 'i'" );
54
55
// When
56
StatementResult result = session.run( "invalid statement" );
0 commit comments