HttpServerTestBase small assertion text fix

This commit is contained in:
Thomas Becker 2012-08-30 16:38:43 +02:00
parent f10729c3f8
commit b710701d13
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public abstract class HttpServerTestBase extends HttpServerTestFixture
String response = readResponse(client);
client.close();
// assertThat("response contains 500 OK", response.contains(" 500 "), is(true)); //TODO: check with gregw,
// assertThat("response contains 500", response.contains(" 500 "), is(true)); //TODO: check with gregw,
assertThat("The 4th byte (-1) has not been passed to the handler", fourBytesRead.get(), is(false));
assertThat("EofException has been caught", earlyEOFException.get(), is(true));
}