Update maformed address to one that should fail on CI

Closes gh-26247
This commit is contained in:
Andy Wilkinson 2021-04-27 11:50:52 +01:00
parent ad67c3d50f
commit 715c4febf9

View File

@ -935,7 +935,7 @@ public abstract class AbstractServletWebServerFactoryTests {
@Test
void malformedAddress() throws Exception {
AbstractServletWebServerFactory factory = getFactory();
factory.setAddress(InetAddress.getByName("255.255.255.255"));
factory.setAddress(InetAddress.getByName("129.129.129.129"));
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
this.webServer = factory.getWebServer();
this.webServer.start();