NO-JIRA Changing port on test as it will clash with the CI if running at 8080

This commit is contained in:
Clebert Suconic 2018-02-21 11:38:47 -05:00
parent f06db19eab
commit 55521e85c9
1 changed files with 4 additions and 4 deletions

View File

@ -92,7 +92,7 @@ public class NetworkHealthTest {
private void startHTTPServer() throws IOException {
Assert.assertNull(httpServer);
InetSocketAddress address = new InetSocketAddress("127.0.0.1", 8080);
InetSocketAddress address = new InetSocketAddress("127.0.0.1", 8787);
httpServer = HttpServer.create(address, 100);
httpServer.start();
httpServer.createContext("/", new HttpHandler() {
@ -197,15 +197,15 @@ public class NetworkHealthTest {
NetworkHealthCheck check = addCheck(new NetworkHealthCheck(null, 100, 1000));
Assert.assertTrue(check.check(new URL("http://localhost:8080")));
Assert.assertTrue(check.check(new URL("http://localhost:8787")));
stopHTTPServer();
Assert.assertFalse(check.check(new URL("http://localhost:8080")));
Assert.assertFalse(check.check(new URL("http://localhost:8787")));
check.addComponent(component);
URL url = new URL("http://localhost:8080");
URL url = new URL("http://localhost:8787");
Assert.assertFalse(check.check(url));
startHTTPServer();