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

Mark a racy test with @Ignore.

We've seen this fail consistently on Travis, and very rarely
on my desktop. Ignore it until it can be investigated fully.

https://github.com/square/okhttp/issues/90
This commit is contained in:
jwilson
2013-01-31 00:10:25 -05:00
parent fc232eb27c
commit 5bfe7124f6

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);
}