Skip to content

Commit 43553e1

Browse files
style: fix checkstyle issues (newline and imports)
1 parent db4e0c3 commit 43553e1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
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.assertThrows;
5+
import static org.junit.jupiter.api.Assertions.assertTrue;
6+
import static org.junit.jupiter.api.Assertions.assertFalse;
47
import org.junit.jupiter.api.Test;
58

69
/**
@@ -68,4 +71,4 @@ void testPeekOnEmptyStack() {
6871

6972
assertThrows(RuntimeException.class, stack::peek);
7073
}
71-
}
74+
}

0 commit comments

Comments
 (0)