Trying to get the test to *pass* now

This commit is contained in:
Andrew Phillips 2013-04-10 13:04:44 +02:00
parent 52301e0a86
commit 282f3e2a37
1 changed files with 2 additions and 2 deletions

View File

@ -70,9 +70,9 @@ public class S3ClientMockTest {
public void testZeroLengthPutHasContentLengthHeader() throws IOException, InterruptedException {
MockWebServer server = new MockWebServer();
server.enqueue(new MockResponse().setBody("").addHeader(ETAG, "ABCDEF"));
server.enqueue(new MockResponse().addHeader(ETAG, "ABCDEF"));
// hangs on Java 7 without this additional response ?!?
server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader(ETAG, "ABCDEF"));
server.play();
S3Client client = getS3Client(server.getUrl("/"));