mirror of
https://github.com/jlengrand/vert.x.git
synced 2026-03-10 08:51:19 +00:00
Remove temporary test
This commit is contained in:
@@ -1962,22 +1962,6 @@ public class Http1xTest extends HttpTest {
|
||||
await();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTimeout() throws Exception {
|
||||
server.requestHandler(req -> {
|
||||
req.response().setChunked(true).write("foo");
|
||||
});
|
||||
startServer(testAddress);
|
||||
client.request(testAddress, new RequestOptions().setPort(DEFAULT_HTTP_PORT).setHost(DEFAULT_HTTP_HOST))
|
||||
.setHandler(onSuccess(resp -> {
|
||||
System.out.println("GOT RESP");
|
||||
resp.exceptionHandler(err -> {
|
||||
System.out.println("ERR");
|
||||
});
|
||||
})).setTimeout(500).end();
|
||||
await();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testServerOptionsCopiedBeforeUse() {
|
||||
server.close();
|
||||
|
||||
Reference in New Issue
Block a user