Skip to content

Commit 1a13ee2

Browse files
author
Stephane Landelle
committed
Fix test after AsyncHttpClient#438
1 parent b2d2434 commit 1a13ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/ning/http/client/async/AsyncProvidersBasicTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ public void asyncDoPostBasicGZIPTest() throws Throwable {
777777
public Response onCompleted(Response response) throws Exception {
778778
try {
779779
assertEquals(response.getStatusCode(), 200);
780-
assertEquals(response.getHeader("X-Accept-Encoding"), "gzip");
780+
assertEquals(response.getHeader("X-Accept-Encoding"), "gzip,deflate");
781781
} finally {
782782
l.countDown();
783783
}

0 commit comments

Comments
 (0)