Skip to content

Commit 3116437

Browse files
committed
Formatting
1 parent 3e52515 commit 3116437

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/geometry/LineDrawerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void testLineDrawingWithBresenhamStrategy(int x0, int y0, int x1, int y1, Collec
3434

3535
List<Point> actual = drawer.drawLine(x0, y0, x1, y1);
3636

37-
Assertions.assertEquals(expected.size(), actual.size(), "Point count mismatch.");
37+
Assertions.assertEquals(expected.size(), actual.size(), "Points count mismatch.");
3838
Assertions.assertTrue(expected.containsAll(actual) && actual.containsAll(expected), "Generated points do not match expected points.");
3939
}
4040

0 commit comments

Comments
 (0)