Skip to content

Commit b2d683f

Browse files
committed
imported right class
1 parent 7f337e3 commit b2d683f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/java/com/thealgorithms/datastructures/trees/TreapTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44

5+
import static org.junit.jupiter.api.Assertions.assertFalse;
6+
57
import org.junit.jupiter.api.Test;
68

79
public class TreapTest {
@@ -59,7 +61,7 @@ public void upperBound() {
5961
}
6062

6163
@Test
62-
public void misc() {
64+
public void size() {
6365
Treap treap = new Treap();
6466
treap.insert(5);
6567
treap.insert(9);

0 commit comments

Comments
 (0)