diff --git a/test/langtools/jdk/jshell/ToolBasicTest.java b/test/langtools/jdk/jshell/ToolBasicTest.java index 41b22b53878..8d8dfc8f9f4 100644 --- a/test/langtools/jdk/jshell/ToolBasicTest.java +++ b/test/langtools/jdk/jshell/ToolBasicTest.java @@ -526,7 +526,7 @@ public class ToolBasicTest extends ReplToolTesting { public void testOpenFileOverHttp() throws IOException { var script = "int a = 10;int b = 20;int c = a + b;"; - var localhostAddress = new InetSocketAddress(InetAddress.getLocalHost().getHostAddress(), 0); + var localhostAddress = new InetSocketAddress(InetAddress.getLoopbackAddress().getHostAddress(), 0); var httpServer = HttpServer.create(localhostAddress, 0); try { httpServer.createContext("/script", exchange -> {