Commit db28c0c6 authored by Phillip Webb's avatar Phillip Webb

Backport "Attempt to fix CI"

parent 93f7e2b6
...@@ -878,7 +878,7 @@ public abstract class AbstractServletWebServerFactoryTests { ...@@ -878,7 +878,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("123456")); factory.setAddress(InetAddress.getByName("255.255.255.255"));
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