Skip to content

Commit f293315

Browse files
author
alxkm
committed
checkstyle: fix "avoid *"
1 parent 271474a commit f293315

File tree

1 file changed

+5
-1
lines changed
  • src/test/java/com/thealgorithms/datastructures/bag

1 file changed

+5
-1
lines changed

src/test/java/com/thealgorithms/datastructures/bag/BagTest.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package com.thealgorithms.datastructures.bag;
22

3-
import static org.junit.jupiter.api.Assertions.*;
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertFalse;
5+
import static org.junit.jupiter.api.Assertions.assertThrows;
6+
import static org.junit.jupiter.api.Assertions.assertTrue;
7+
import static org.junit.jupiter.api.Assertions.fail;
48

59
import com.thealgorithms.datastructures.bags.Bag;
610
import java.util.Iterator;

0 commit comments

Comments
 (0)