Skip to content

Commit 7206d30

Browse files
committed
fix: linter order
1 parent b1deddd commit 7206d30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.thealgorithms.stacks;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4-
import static org.junit.jupiter.api.Assertions.assertThrows;
54
import static org.junit.jupiter.api.Assertions.assertNull;
5+
import static org.junit.jupiter.api.Assertions.assertThrows;
66

77
import java.util.NoSuchElementException;
88
import org.junit.jupiter.api.BeforeEach;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.thealgorithms.stacks;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4-
import static org.junit.jupiter.api.Assertions.assertThrows;
54
import static org.junit.jupiter.api.Assertions.assertNull;
5+
import static org.junit.jupiter.api.Assertions.assertThrows;
66

77
import java.util.NoSuchElementException;
88
import org.junit.jupiter.api.BeforeEach;

0 commit comments

Comments
 (0)