Skip to content

Commit 538eba4

Browse files
author
Stephane Landelle
committed
Fix test since RFC6265 is now enabled by default
1 parent 49ea600 commit 538eba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/test/java/org/asynchttpclient/async/AsyncProvidersBasicTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ public Response onCompleted(Response response) throws Exception {
478478
assertEquals(response.getStatusCode(), 200);
479479
List<Cookie> cookies = response.getCookies();
480480
assertEquals(cookies.size(), 1);
481-
assertEquals(cookies.get(0).toString(), coo.toString());
481+
assertEquals(cookies.get(0).toString(), "foo=value");
482482
} finally {
483483
l.countDown();
484484
}

0 commit comments

Comments
 (0)