Skip to content

Commit 8c1f60a

Browse files
author
alxkm
committed
checkstyle: formatting
1 parent 4e79dde commit 8c1f60a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/java/com/thealgorithms/others/FloydTriangleTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ public void testGenerateFloydTriangleWithMultipleRows() {
4040

4141
@Test
4242
public void testGenerateFloydTriangleWithMoreMultipleRows() {
43-
List<List<Integer>> expectedOutput = Arrays.asList(Arrays.asList(1), Arrays.asList(2, 3), Arrays.asList(4, 5, 6), Arrays.asList(7, 8, 9, 10), Arrays.asList(11, 12, 13, 14, 15),
44-
Arrays.asList(16, 17, 18, 19, 20, 21), Arrays.asList(22, 23, 24, 25, 26, 27, 28));
43+
List<List<Integer>> expectedOutput = Arrays.asList(Arrays.asList(1), Arrays.asList(2, 3), Arrays.asList(4, 5, 6), Arrays.asList(7, 8, 9, 10), Arrays.asList(11, 12, 13, 14, 15), Arrays.asList(16, 17, 18, 19, 20, 21), Arrays.asList(22, 23, 24, 25, 26, 27, 28));
4544
assertEquals(expectedOutput, FloydTriangle.generateFloydTriangle(7));
4645
}
4746
}
48-

0 commit comments

Comments
 (0)