Skip to content

Commit 539bca8

Browse files
committed
clang fixes
1 parent 70ba32e commit 539bca8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ void testGetLongestArithmeticSubsequenceLengthThrowsForNullInput() {
3030

3131
private static Stream<Arguments> provideTestCases() {
3232
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),
33-
Arguments.of(new int[] {1, 2, 2, 2, 2, 5}, 4));
33+
Arguments.of(new int[] {1, 2, 2, 2, 2, 5}, 4));
3434
}
3535
}

0 commit comments

Comments
 (0)