Skip to content

Commit b43b7e0

Browse files
Add missing newline at end of TopologicalSort class
1 parent 045c7fc commit b43b7e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

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

3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertThrows;
5+
import static org.junit.jupiter.api.Assertions.assertTrue;
6+
37
import java.util.Arrays;
48
import java.util.List;
59
import org.junit.jupiter.api.DisplayName;
610
import org.junit.jupiter.api.Test;
711

8-
import static org.junit.jupiter.api.Assertions.assertEquals;
9-
import static org.junit.jupiter.api.Assertions.assertThrows;
10-
import static org.junit.jupiter.api.Assertions.assertTrue;
11-
1212
/**
1313
* Test class for TopologicalSort
1414
* Achieves 100% code coverage

0 commit comments

Comments
 (0)