Skip to content

Commit 78d5941

Browse files
committed
Fix missing package declaration in StronglyConnectedComponentOptimizedTest
1 parent 352027e commit 78d5941

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/graph/StronglyConnectedComponentOptimizedTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.graph;
1+
package com.thealgorithms.graph;//added missing package
22

33

44

@@ -46,7 +46,7 @@ public void testTwoComponents() {
4646

4747
// There are 2 SCCs: {0, 1, 2} and {3}
4848
assertEquals(2, result, "There should be 2 strongly connected components.");
49-
}
49+
}
5050

5151
@Test
5252
public void testDisconnectedGraph() {

0 commit comments

Comments
 (0)