Skip to content

Commit db1f444

Browse files
author
alxkm
committed
checkstyle: fix import
1 parent e1a5f1a commit db1f444

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.thealgorithms.conversions;
22

3+
import static org.junit.jupiter.api.Assertions.*;
4+
35
import org.junit.jupiter.api.Test;
46
import org.junit.jupiter.params.ParameterizedTest;
57
import org.junit.jupiter.params.provider.CsvSource;
68

7-
import static org.junit.jupiter.api.Assertions.*;
8-
99
class DecimalToOctalTest {
1010
@ParameterizedTest
1111
@CsvSource({"0, 0", "7, 7", "8, 10", "10, 12", "64, 100", "83, 123", "7026, 15562"})

0 commit comments

Comments
 (0)