Backport "Attempt to fix CI"

pull/21267/head
Phillip Webb 5 years ago
parent 93f7e2b6ba
commit db28c0c65c

@ -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();

Loading…
Cancel
Save