This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch WW-5539 in repository https://gitbox.apache.org/repos/asf/struts.git
commit 43ddc13ad160adc6c24c82efff7531e57b2219e8 Author: Lukasz Lenart <[email protected]> AuthorDate: Tue Jul 21 17:01:56 2026 +0200 WW-5539 Rename test to match what it actually covers The method exercised only the unknown-mapping cache, not noMapping. --- .../org/apache/struts2/conversion/StrutsTypeConverterHolderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/org/apache/struts2/conversion/StrutsTypeConverterHolderTest.java b/core/src/test/java/org/apache/struts2/conversion/StrutsTypeConverterHolderTest.java index 6fc2eac80..be931af8a 100644 --- a/core/src/test/java/org/apache/struts2/conversion/StrutsTypeConverterHolderTest.java +++ b/core/src/test/java/org/apache/struts2/conversion/StrutsTypeConverterHolderTest.java @@ -76,7 +76,7 @@ public class StrutsTypeConverterHolderTest extends XWorkTestCase { } } - public void testConcurrentNoMappingAndUnknownMappingRegistrationLosesNothing() throws Exception { + public void testConcurrentUnknownMappingRegistrationLosesNothing() throws Exception { StrutsTypeConverterHolder holder = new StrutsTypeConverterHolder(); ExecutorService pool = Executors.newFixedThreadPool(THREADS); CountDownLatch start = new CountDownLatch(1);
