From 16bc957d28bd1c3cd7038ade910774fa4f1e17c3 Mon Sep 17 00:00:00 2001 From: Knute Lingaard Date: Fri, 27 Oct 2023 10:59:28 -0500 Subject: [PATCH] Added missing comment on tester --- sparta/test/PriorityQueue/PriorityQueue_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparta/test/PriorityQueue/PriorityQueue_test.cpp b/sparta/test/PriorityQueue/PriorityQueue_test.cpp index 6e6d94e441..636bee48fd 100644 --- a/sparta/test/PriorityQueue/PriorityQueue_test.cpp +++ b/sparta/test/PriorityQueue/PriorityQueue_test.cpp @@ -20,7 +20,7 @@ void test_defafult_pq() EXPECT_EQUAL(pqueue.size(), 8); EXPECT_EQUAL(pqueue.top(), 1); - pqueue.pop(); + pqueue.pop(); // 1 EXPECT_FALSE(pqueue.empty());