We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d86d481 commit fc91911Copy full SHA for fc91911
client/src/test/java/org/asynchttpclient/RemoteSiteTest.java
@@ -168,7 +168,7 @@ public void stripQueryStringTest() throws Exception {
168
}
169
170
@Test(groups = "online")
171
- public void evilCoookieTest() throws Exception {
+ public void evilCookieTest() throws Exception {
172
try (AsyncHttpClient c = asyncHttpClient()) {
173
Cookie cookie = new DefaultCookie("evilcookie", "test");
174
cookie.setDomain(".google.com");
@@ -198,9 +198,7 @@ public void onThrowable(Throwable t) {
198
199
200
public State onBodyPartReceived(HttpResponseBodyPart bodyPart) throws Exception {
201
- System.out.println(bodyPart.getBodyPartBytes().length);
202
builder.accumulate(bodyPart);
203
-
204
return State.CONTINUE;
205
206
0 commit comments