Skip to content

Commit db28c0c

Browse files
committed
Backport "Attempt to fix CI"
1 parent 93f7e2b commit db28c0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/servlet/server/AbstractServletWebServerFactoryTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception
878878
@Test
879879
void malformedAddress() throws Exception {
880880
AbstractServletWebServerFactory factory = getFactory();
881-
factory.setAddress(InetAddress.getByName("123456"));
881+
factory.setAddress(InetAddress.getByName("255.255.255.255"));
882882
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
883883
this.webServer = factory.getWebServer();
884884
this.webServer.start();

0 commit comments

Comments
 (0)