Commit 31b65009 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '2.4.x'

Closes gh-26251
parents 258ae73a ffc06e1e
...@@ -942,7 +942,7 @@ public abstract class AbstractServletWebServerFactoryTests { ...@@ -942,7 +942,7 @@ public abstract class AbstractServletWebServerFactoryTests {
@Test @Test
void malformedAddress() throws Exception { void malformedAddress() throws Exception {
AbstractServletWebServerFactory factory = getFactory(); AbstractServletWebServerFactory factory = getFactory();
factory.setAddress(InetAddress.getByName("255.255.255.255")); factory.setAddress(InetAddress.getByName("129.129.129.129"));
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> { assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
this.webServer = factory.getWebServer(); this.webServer = factory.getWebServer();
this.webServer.start(); this.webServer.start();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment