Skip to content

Commit 68047bb

Browse files
committed
Organize imports
1 parent f2aad20 commit 68047bb

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/test/java/org/apache/commons/cli/OptionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
package org.apache.commons.cli;
1919

20-
import static org.junit.jupiter.api.Assertions.assertThrows;
2120
import static org.junit.Assert.assertEquals;
2221
import static org.junit.Assert.assertFalse;
2322
import static org.junit.Assert.assertNotEquals;
2423
import static org.junit.Assert.assertNotSame;
2524
import static org.junit.Assert.assertNull;
2625
import static org.junit.Assert.assertTrue;
26+
import static org.junit.jupiter.api.Assertions.assertThrows;
2727

2828
import org.junit.Test;
2929

src/test/java/org/apache/commons/cli/TypeHandlerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ Licensed to the Apache Software Foundation (ASF) under one or more
1717

1818
package org.apache.commons.cli;
1919

20-
import static org.junit.jupiter.api.Assertions.assertThrows;
2120
import static org.junit.Assert.assertEquals;
2221
import static org.junit.Assert.assertNotNull;
2322
import static org.junit.Assert.assertTrue;
23+
import static org.junit.jupiter.api.Assertions.assertThrows;
2424

2525
import java.io.File;
2626
import java.io.FileInputStream;

src/test/java/org/apache/commons/cli/bug/BugCLI252Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717

1818
package org.apache.commons.cli.bug;
1919

20+
import static org.junit.jupiter.api.Assertions.assertThrows;
21+
2022
import org.apache.commons.cli.AmbiguousOptionException;
2123
import org.apache.commons.cli.DefaultParser;
2224
import org.apache.commons.cli.Option;
2325
import org.apache.commons.cli.Options;
2426
import org.apache.commons.cli.ParseException;
2527
import org.junit.Test;
2628

27-
import static org.junit.jupiter.api.Assertions.assertThrows;
28-
2929
public class BugCLI252Test {
3030

3131
private Options getOptions() {

0 commit comments

Comments
 (0)