Skip to content

Commit fc91911

Browse files
committed
minor clean up
1 parent d86d481 commit fc91911

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client/src/test/java/org/asynchttpclient/RemoteSiteTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public void stripQueryStringTest() throws Exception {
168168
}
169169

170170
@Test(groups = "online")
171-
public void evilCoookieTest() throws Exception {
171+
public void evilCookieTest() throws Exception {
172172
try (AsyncHttpClient c = asyncHttpClient()) {
173173
Cookie cookie = new DefaultCookie("evilcookie", "test");
174174
cookie.setDomain(".google.com");
@@ -198,9 +198,7 @@ public void onThrowable(Throwable t) {
198198
}
199199

200200
public State onBodyPartReceived(HttpResponseBodyPart bodyPart) throws Exception {
201-
System.out.println(bodyPart.getBodyPartBytes().length);
202201
builder.accumulate(bodyPart);
203-
204202
return State.CONTINUE;
205203
}
206204

0 commit comments

Comments
 (0)