feat: small change

This commit is contained in:
mpaulson 2022-08-03 19:50:30 -06:00
parent b83a3f379b
commit b1ec6b10af
5 changed files with 6 additions and 25 deletions

View file

@ -24,7 +24,7 @@ test("min heap", function () {
expect(heap.delete()).toEqual(8);
expect(heap.delete()).toEqual(69);
expect(heap.delete()).toEqual(420);
expect(heap.length).toEqual(8);
expect(heap.length).toEqual(0);
});