Fix test not passing for domain sockets due to not using the correct address in client

This commit is contained in:
Julien Viet
2019-10-29 09:58:32 +01:00
parent 034ef54098
commit 39d0fed1cd

View File

@@ -5487,7 +5487,7 @@ public abstract class HttpTest extends HttpTestBase {
server.requestHandler(req -> {
req.response().end();
});
startServer();
startServer(testAddress);
client.close();
Context ctx = vertx.getOrCreateContext();
CompletableFuture<HttpClientRequest> reqFut = new CompletableFuture<>();