Skip to content

Commit 61bce84

Browse files
committed
Remove console prints from tests
Makes builds less chatty Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent 4bc42cd commit 61bce84

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/test/java/io/vertx/httpproxy/ProxyClientKeepAliveTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import io.vertx.core.streams.WriteStream;
2121
import io.vertx.ext.unit.Async;
2222
import io.vertx.ext.unit.TestContext;
23-
import org.junit.Ignore;
2423
import org.junit.Test;
2524

2625
import java.io.Closeable;
@@ -289,7 +288,6 @@ private void testFrontendCloseResponse(TestContext ctx, boolean chunked) {
289288
req.send().onComplete(ctx.asyncAssertSuccess(resp -> {
290289
resp.handler(buff -> {
291290
resp.request().connection().close();
292-
System.out.println("closing");
293291
});
294292
}));
295293
}));
@@ -669,7 +667,6 @@ private void checkBadResponse(TestContext ctx, String... responses) throws Excep
669667
so.handler(buff -> {
670668
body.appendBuffer(buff);
671669
if (body.toString().endsWith("\r\n\r\n")) {
672-
System.out.println(body.toString());
673670
so.write(responseBody.get());
674671
}
675672
});

0 commit comments

Comments
 (0)