Skip to content

Commit d7f1561

Browse files
committed
testing: fix to many static imports
1 parent f62bbc3 commit d7f1561

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/test/java/com/thealgorithms/datastructures/queues/DequeTest.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
package com.thealgorithms.datastructures.queues;
22

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;
3+
import static org.junit.jupiter.api.Assertions.*;
84

95
import java.util.NoSuchElementException;
106
import org.junit.jupiter.api.Test;

0 commit comments

Comments
 (0)