Skip to content

Commit 7f337e3

Browse files
committed
changed to assertFalse where the function had to be checked for false was initially done using assertEquals
1 parent e0b1fae commit 7f337e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ public void misc() {
6969
treap.insert(8);
7070
treap.insert(1);
7171
assertEquals(7, treap.size());
72-
assertEquals(false, treap.isEmpty());
72+
assertFalse(treap.isEmpty());
7373
}
7474
}

0 commit comments

Comments
 (0)