Skip to content

Commit 4de69c3

Browse files
committed
Attempt to fix CI
1 parent c2a21f0 commit 4de69c3

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
@@ -924,7 +924,7 @@ void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception
924924
@Test
925925
void malformedAddress() throws Exception {
926926
AbstractServletWebServerFactory factory = getFactory();
927-
factory.setAddress(InetAddress.getByName("123456"));
927+
factory.setAddress(InetAddress.getByName("255.255.255.255"));
928928
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
929929
this.webServer = factory.getWebServer();
930930
this.webServer.start();

0 commit comments

Comments
 (0)