Skip to content

Commit 278b3d0

Browse files
committed
linter styles corrected
1 parent 15faa54 commit 278b3d0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/java/com/thealgorithms/greedyalgorithms/DigitSeparationTest.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
package com.thealgorithms.greedyalgorithms;
22

3-
import org.junit.jupiter.api.Test;
43
import static org.junit.jupiter.api.Assertions.assertEquals;
54

65
import java.util.List;
7-
6+
import org.junit.jupiter.api.Test;
87
public class DigitSeparationTest {
98

109
@Test
11-
public void testDigitSeparationReverseOrder_SingleDigit() {
10+
public void testDigitSeparationReverseOrderSingleDigit() {
1211
DigitSeparation digitSeparation = new DigitSeparation();
1312
List<Long> result = digitSeparation.digitSeparationReverseOrder(5);
1413
assertEquals(List.of(5L), result);

0 commit comments

Comments
 (0)