This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git
commit 6365b861c2d80667517586ded9662ddc7b470635 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jun 13 10:55:31 2025 -0400 Clean up imports --- .../apache/commons/fileupload2/core/MockRequestContextTest.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java b/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java index d0948bd3..c7e30e8d 100644 --- a/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java +++ b/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java @@ -16,7 +16,10 @@ */ package org.apache.commons.fileupload2.core; -import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.InputStream; import java.nio.charset.StandardCharsets; @@ -24,7 +27,7 @@ import java.nio.charset.UnsupportedCharsetException; import java.util.function.Function; import java.util.function.LongSupplier; -import static org.junit.jupiter.api.Assertions.*; +import org.junit.jupiter.api.Test; /** * Tests for {@link AbstractRequestContext}