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-csv.git
The following commit(s) were added to refs/heads/master by this push:
new bc5698b Organize imports.
bc5698b is described below
commit bc5698b95d64f2384d2e81f25bbe10087411ce3a
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 3 15:02:47 2021 -0400
Organize imports.
---
src/test/java/org/apache/commons/csv/issues/JiraCsv148Test.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/test/java/org/apache/commons/csv/issues/JiraCsv148Test.java
b/src/test/java/org/apache/commons/csv/issues/JiraCsv148Test.java
index 1a92f18..7e50747 100644
--- a/src/test/java/org/apache/commons/csv/issues/JiraCsv148Test.java
+++ b/src/test/java/org/apache/commons/csv/issues/JiraCsv148Test.java
@@ -16,11 +16,10 @@
*/
package org.apache.commons.csv.issues;
-import org.apache.commons.csv.CSVFormat;
-import org.apache.commons.csv.QuoteMode;
-
import static org.junit.jupiter.api.Assertions.assertEquals;
+import org.apache.commons.csv.CSVFormat;
+import org.apache.commons.csv.QuoteMode;
import org.junit.jupiter.api.Test;
public class JiraCsv148Test {