From 0a13e4dbcb5dbf816bc2254cbbd57a29362bf207 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Wed, 28 May 2025 09:33:45 +0200 Subject: [PATCH] Polish "Add smoke tests for Spring Cloud Gateway WebMVC" See gh-265 --- .../aot/smoketest/support/junit/ApplicationUnderTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {