Skip to content

Commit 650a622

Browse files
committed
Fixed wildcard imports
1 parent fc886d6 commit 650a622

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/test/java/com/thealgorithms/stacks/StackUsingLinkedListTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package com.thealgorithms.stacks;
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.assertNull;
6+
import static org.junit.jupiter.api.Assertions.assertThrows;
7+
import static org.junit.jupiter.api.Assertions.assertTrue;
48

59
import org.junit.jupiter.api.BeforeEach;
610
import org.junit.jupiter.api.Test;
@@ -76,4 +80,4 @@ void size() {
7680

7781
assertEquals(2, linkedStack.size());
7882
}
79-
}
83+
}

0 commit comments

Comments
 (0)