From 7d697fe2ec90dd5eb5c3f6cb5e1ee09325814ab1 Mon Sep 17 00:00:00 2001 From: ReaJason Date: Tue, 3 Dec 2024 21:35:23 +0800 Subject: [PATCH] test: fix case name error --- .../javaweb/integration/tomcat/TomcatIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-test/src/test/java/com/reajason/javaweb/integration/tomcat/TomcatIntegrationTest.java b/integration-test/src/test/java/com/reajason/javaweb/integration/tomcat/TomcatIntegrationTest.java index 8bbb6652..8cbad04e 100644 --- a/integration-test/src/test/java/com/reajason/javaweb/integration/tomcat/TomcatIntegrationTest.java +++ b/integration-test/src/test/java/com/reajason/javaweb/integration/tomcat/TomcatIntegrationTest.java @@ -150,7 +150,7 @@ public class TomcatIntegrationTest { testGodzillaJspInjectAssertOk(getUrl(tomcat), shellType, Opcodes.V11); } - @ParameterizedTest(name = tomcat10ImageName + "|{0}Godzilla|JSP") + @ParameterizedTest(name = tomcat10ImageName + "|{0}Command|JSP") @ValueSource(strings = {TomcatShell.JAKARTA_FILTER, TomcatShell.JAKARTA_LISTENER, TomcatShell.JAKARTA_VALVE}) void testCommand(String shellType) { testCommandJspInjectAssertOk(getUrl(tomcat), shellType, Opcodes.V11);