Skip to content

Commit 09740a9

Browse files
author
Alex Klymenko
committed
checkstyle: fix incorrect import order
1 parent c42e474 commit 09740a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/thealgorithms/sorts/FlashSortTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.thealgorithms.sorts;
22

3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertThrows;
5+
36
import org.junit.jupiter.api.Test;
47
import org.junit.jupiter.params.ParameterizedTest;
58
import org.junit.jupiter.params.provider.ValueSource;
69

7-
import static org.junit.jupiter.api.Assertions.assertEquals;
8-
import static org.junit.jupiter.api.Assertions.assertThrows;
9-
1010
public class FlashSortTest extends SortingAlgorithmTest {
1111
@Override
1212
SortAlgorithm getSortAlgorithm() {

0 commit comments

Comments
 (0)