Skip to content

Commit f6cd843

Browse files
committed
clang format changes done
1 parent eded33d commit f6cd843

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/com/thealgorithms/dynamicprogramming/LongestArithmeticSubsequenceTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
import static org.junit.jupiter.api.Assertions.assertThrows;
55

66
import java.util.stream.Stream;
7+
import org.apache.commons.lang3.ArrayUtils;
78
import org.junit.jupiter.params.ParameterizedTest;
89
import org.junit.jupiter.params.provider.Arguments;
910
import org.junit.jupiter.params.provider.MethodSource;
10-
import org.apache.commons.lang3.ArrayUtils;
11+
1112

1213
public class LongestArithmeticSubsequenceTest {
1314

@@ -25,6 +26,6 @@ void testNullInput() {
2526
}
2627

2728
private static Stream<Arguments> provideTestCases() {
28-
return Stream.of(Arguments.of(new int[]{3, 6, 9, 12, 15}, 5), Arguments.of(new int[]{1, 7, 10, 13, 14, 19}, 4), Arguments.of(new int[]{1, 2, 3, 4}, 4), Arguments.of(new int[]{}, 0), Arguments.of(new int[]{10}, 1), Arguments.of(new int[]{9, 4, 7, 2, 10}, 3));
29+
return Stream.of(Arguments.of(new int[] {3, 6, 9, 12, 15}, 5), Arguments.of(new int[] {1, 7, 10, 13, 14, 19}, 4), Arguments.of(new int[] {1, 2, 3, 4}, 4), Arguments.of(new int[] {}, 0), Arguments.of(new int[] {10}, 1), Arguments.of(new int[] {9, 4, 7, 2, 10}, 3));
2930
}
3031
}

0 commit comments

Comments
 (0)