Skip to content

Commit

Permalink
Merge pull request #7870 from pontusmelke/3.1-windows-fix
Browse files Browse the repository at this point in the history
Fix for failing windows test
  • Loading branch information
davidegrohmann committed Sep 6, 2016
2 parents fcd10f9 + 11d5057 commit cf29e76
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,9 @@ public void shouldBeAbleToRunQueryAfterAckFailure() throws Throwable
assertThat( client, eventuallyReceives(
msgSuccess(),
msgFailure( Status.Statement.SyntaxError,
"Invalid input 'I': expected <init> (line 1, column 1 (offset: 0))\n" +
"\"INVALID\"\n" +
" ^"),
msgIgnored()));
String.format("Invalid input 'I': expected <init> (line 1, column 1 (offset: 0))%n" +
"\"INVALID\"%n" +
" ^")), msgIgnored()));

// When
client.send( TransportTestUtil.chunk( ackFailure(), run("RETURN 1"), pullAll()) );
Expand Down

0 comments on commit cf29e76

Please sign in to comment.