This is an automated email from the ASF dual-hosted git repository. henrib pushed a commit to branch JEXL-445 in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
commit 15992cdefe6c2a2e4588c1dddd3b368b1b580483 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Sep 5 10:59:25 2025 -0700 Fix Checkstyle --- src/test/java/org/apache/commons/jexl3/SwitchTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/apache/commons/jexl3/SwitchTest.java b/src/test/java/org/apache/commons/jexl3/SwitchTest.java index 986bc477..8a025ce7 100644 --- a/src/test/java/org/apache/commons/jexl3/SwitchTest.java +++ b/src/test/java/org/apache/commons/jexl3/SwitchTest.java @@ -16,14 +16,14 @@ */ package org.apache.commons.jexl3; -import org.junit.jupiter.api.Assertions; -import org.junit.jupiter.api.Test; - import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; + /** * Tests switch/case statement and expression. */