Skip to content

Commit 919e575

Browse files
committed
Fix
1 parent 1d199e7 commit 919e575

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public void testMultipleBuildingsSkyline() {
7474

7575
ArrayList<SkylineProblem.Skyline> result = skylineProblem.findSkyline(0, 2);
7676

77-
// Expected skyline points: (1, 10), (2, 15), (7, 12), (9, 0)
7877
assertEquals(1, result.get(0).coordinates);
7978
assertEquals(10, result.get(0).height);
8079
assertEquals(2, result.get(1).coordinates);

0 commit comments

Comments
 (0)