diff --git a/aot-smoke-test-support/src/main/java/org/springframework/aot/smoketest/support/junit/ApplicationUnderTest.java b/aot-smoke-test-support/src/main/java/org/springframework/aot/smoketest/support/junit/ApplicationUnderTest.java index 78985b63..d465de90 100644 --- a/aot-smoke-test-support/src/main/java/org/springframework/aot/smoketest/support/junit/ApplicationUnderTest.java +++ b/aot-smoke-test-support/src/main/java/org/springframework/aot/smoketest/support/junit/ApplicationUnderTest.java @@ -47,7 +47,8 @@ final class ApplicationUnderTest { return this.port; } List portPatterns = List.of(Pattern.compile("Tomcat started on port ([0-9]+)"), - Pattern.compile("Netty started on port ([0-9]+)"), Pattern.compile("Jetty started on port ([0-9]+)"), + Pattern.compile("Netty started on port ([0-9]+)"), + Pattern.compile("Jetty started on port ([0-9]+)"), Pattern.compile("Undertow started on port ([0-9]+)")); List lines = Output.current().lines(); for (String line : lines) {