Skip to content

Commit 5e3a22e

Browse files
committed
fix the imports
1 parent c7d6849 commit 5e3a22e

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/test/java/org/apache/commons/csv/LexerTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@
2929
import static org.apache.commons.csv.TokenMatchers.hasContent;
3030
import static org.apache.commons.csv.TokenMatchers.matches;
3131
import static org.hamcrest.MatcherAssert.assertThat;
32-
import static org.junit.jupiter.api.Assertions.*;
33-
32+
import static org.junit.jupiter.api.Assertions.assertFalse;
33+
import static org.junit.jupiter.api.Assertions.assertThrows;
34+
import static org.junit.jupiter.api.Assertions.assertTrue;
35+
import static org.junit.jupiter.api.Assertions.assertEquals;
3436
import java.io.IOException;
3537
import java.io.StringReader;
3638

src/test/java/org/apache/commons/csv/TokenMatchersTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
import static org.apache.commons.csv.TokenMatchers.hasType;
2121
import static org.apache.commons.csv.TokenMatchers.isReady;
2222
import static org.apache.commons.csv.TokenMatchers.matches;
23-
import static org.junit.jupiter.api.Assertions.*;
23+
import static org.junit.jupiter.api.Assertions.assertFalse;
24+
import static org.junit.jupiter.api.Assertions.assertTrue;
25+
import static org.junit.jupiter.api.Assertions.assertEquals;
2426

2527
import org.junit.jupiter.api.BeforeEach;
2628
import org.junit.jupiter.api.Test;

0 commit comments

Comments
 (0)