Skip to content

Commit 909acdb

Browse files
author
Samuel Facchinello
committed
fix clang
1 parent 575b5e1 commit 909acdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/strings/LetterCombinationsOfPhoneNumberTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public void testLetterCombinationsOfPhoneNumber(int[] numbers, List<String> expe
1717
assertEquals(expectedOutput, LetterCombinationsOfPhoneNumber.getCombinations(numbers));
1818
}
1919

20-
private static Stream<Arguments> provideTestCases() {
20+
private static Stream<Arguments> provideTestCases() {
2121
return Stream.of(Arguments.of(null, List.of("")), Arguments.of(new int[] {}, List.of("")), Arguments.of(new int[] {2}, Arrays.asList("a", "b", "c")), Arguments.of(new int[] {2, 3}, Arrays.asList("ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf")),
2222
Arguments.of(new int[] {2, 3, 4}, Arrays.asList("adg", "adh", "adi", "aeg", "aeh", "aei", "afg", "afh", "afi", "bdg", "bdh", "bdi", "beg", "beh", "bei", "bfg", "bfh", "bfi", "cdg", "cdh", "cdi", "ceg", "ceh", "cei", "cfg", "cfh", "cfi")));
2323
}

0 commit comments

Comments
 (0)