From f77a970c7892fc092a25f11cd635e8bd43a1330b Mon Sep 17 00:00:00 2001 From: maruf hasan Date: Fri, 13 Oct 2023 20:10:29 +0600 Subject: [PATCH] updated BinaryHeap.test.js (#1520) there was a console.log, which is not necessary for test cases. --- Data-Structures/Heap/test/BinaryHeap.test.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Data-Structures/Heap/test/BinaryHeap.test.js b/Data-Structures/Heap/test/BinaryHeap.test.js index aef538d9f..ee9d5a057 100644 --- a/Data-Structures/Heap/test/BinaryHeap.test.js +++ b/Data-Structures/Heap/test/BinaryHeap.test.js @@ -36,7 +36,6 @@ describe('BinaryHeap', () => { it('should handle insertion of duplicate values', () => { // Check if the heap handles duplicate values correctly minHeap.insert(2) - console.log(minHeap.heap) expect(minHeap.heap).toEqual([1, 3, 2, 4, 8, 6, 2]) })