1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-25 16:01:38 +03:00

Merge pull request #92 from square/jwilson/ignore_racy_test

Mark a racy test with @Ignore.
This commit is contained in:
Jake Wharton
2013-01-30 21:18:32 -08:00

View File

@@ -395,7 +395,11 @@ public final class URLConnectionTest {
testServerClosesOutput(SHUTDOWN_INPUT_AT_END);
}
@Test public void serverShutdownOutput() throws Exception {
/**
* Ignored because this test is racy.
* https://github.com/square/okhttp/issues/90
*/
@Test @Ignore public void serverShutdownOutput() throws Exception {
testServerClosesOutput(SHUTDOWN_OUTPUT_AT_END);
}