Skip to content

Commit f10f5fb

Browse files
authored
lint checked in remote
Removed duplicate import statements for assertions.
1 parent c0ceecf commit f10f5fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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+
36
import java.util.ArrayList;
47
import java.util.HashSet;
58
import java.util.List;
@@ -8,9 +11,6 @@
811
import org.junit.jupiter.api.DisplayName;
912
import org.junit.jupiter.api.Test;
1013

11-
import static org.junit.jupiter.api.Assertions.assertEquals;
12-
import static org.junit.jupiter.api.Assertions.assertThrows;
13-
1414
class BronKerboschTest {
1515

1616
@Test

0 commit comments

Comments
 (0)