Skip to content

Commit 97a91dc

Browse files
author
Alex Klymenko
committed
checkstyle: fix import ordering
1 parent 02a326e commit 97a91dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/thealgorithms/conversions/AnyBaseToDecimalTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.thealgorithms.conversions;
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.CsvSource;
69

7-
import static org.junit.jupiter.api.Assertions.assertEquals;
8-
import static org.junit.jupiter.api.Assertions.assertThrows;
9-
1010
public class AnyBaseToDecimalTest {
1111
@ParameterizedTest
1212
@CsvSource({"1010, 2, 10", "777, 8, 511", "999, 10, 999", "ABCDEF, 16, 11259375", "XYZ, 36, 44027", "0, 2, 0", "A, 16, 10", "Z, 36, 35"})

0 commit comments

Comments
 (0)