Fixing websocket testcase

This commit is contained in:
Joakim Erdfelt 2013-02-25 16:52:56 -07:00
parent a65adcdd38
commit 2ed0dc8fff
1 changed files with 1 additions and 4 deletions

View File

@ -93,10 +93,7 @@ public class WebSocketMinVersionTest
}
catch(IllegalStateException e) {
String respHeader = e.getMessage();
Assert.assertThat("Response Header", respHeader, allOf(
containsString("HTTP/1.1 400 Unsupported"),
containsString("minVersion [8]"),
containsString("[13, 8]")));
Assert.assertThat("Response Header", respHeader, containsString("HTTP/1.1 400 Unsupported websocket version specification"));
}
finally
{