Skip to content

Commit 572b8c2

Browse files
committed
Fix
1 parent 6fc2fd9 commit 572b8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/datastructures/heaps/GenericHeapTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void testUpdatePriority() {
5757
heap.add(20);
5858
heap.add(5);
5959

60-
heap.updatePriority(10); // This is a no-op since 10 is not greater than 20.
60+
heap.updatePriority(10);
6161
assertEquals(20, heap.get());
6262

6363
heap.add(30);

0 commit comments

Comments
 (0)