Skip to content

Commit fc7f16a

Browse files
committed
style: fix style issues
1 parent 4dff67c commit fc7f16a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/thealgorithms/datastructures/stacks/NodeStackTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import static org.junit.jupiter.api.Assertions.assertFalse;
5+
import static org.junit.jupiter.api.Assertions.assertNull;
56
import static org.junit.jupiter.api.Assertions.assertThrows;
67
import static org.junit.jupiter.api.Assertions.assertTrue;
7-
import static org.junit.jupiter.api.Assertions.assertNull;
88

9-
import org.junit.jupiter.api.Test;
109
import org.junit.jupiter.api.BeforeEach;
1110
import org.junit.jupiter.api.DisplayName;
11+
import org.junit.jupiter.api.Test;
1212

1313
class NodeStackTest {
1414

@@ -249,4 +249,4 @@ void testToString() {
249249
assertTrue(stackString != null, "toString should not return null");
250250
assertTrue(stackString.length() > 0, "toString should return non-empty string");
251251
}
252-
}
252+
}

0 commit comments

Comments
 (0)