Skip to content

Commit bfb4d32

Browse files
author
Samuel Facchinello
committed
fix clang tests
1 parent 8fe553a commit bfb4d32

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ public void testLetterCombinationsOfPhoneNumber(int[] numbers, List<String> expe
1919

2020
private static Stream<Arguments> provideTestCases() {
2121
return Stream.of(
22-
// Test case 1:
23-
Arguments.of(new int[]{}, List.of("")),
22+
// Test case 1:
23+
Arguments.of(new int[] {}, List.of("")),
2424

25-
// Test case 2:
26-
Arguments.of(new int[]{2}, Arrays.asList("a", "b", "c")),
25+
// Test case 2:
26+
Arguments.of(new int[] {2}, Arrays.asList("a", "b", "c")),
2727

28-
// Test case 3:
29-
Arguments.of(new int[]{2, 3}, Arrays.asList("ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf")),
28+
// Test case 3:
29+
Arguments.of(new int[] {2, 3}, Arrays.asList("ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf")),
3030

31-
// Test case 4:
32-
Arguments.of(new int[]{2, 3, 4}, Arrays.asList("adg", "adh", "adi", "aeg", "aeh", "aei", "afg", "afh", "afi",
33-
"bdg", "bdh", "bdi", "beg", "beh", "bei", "bfg", "bfh", "bfi",
34-
"cdg", "cdh", "cdi", "ceg", "ceh", "cei", "cfg", "cfh", "cfi"))
35-
);
31+
// Test case 4:
32+
Arguments.of(new int[] {2, 3, 4},
33+
Arrays.asList("adg", "adh", "adi", "aeg", "aeh", "aei", "afg", "afh", "afi", //
34+
"bdg", "bdh", "bdi", "beg", "beh", "bei", "bfg", "bfh", "bfi", //
35+
"cdg", "cdh", "cdi", "ceg", "ceh", "cei", "cfg", "cfh", "cfi")));
3636
}
3737
}

0 commit comments

Comments
 (0)