Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 authored Jan 31, 2021
1 parent 705f450 commit b2e588c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_LinkedListQueue():
assert q1.pop().key == 1
assert q1.popleft().key == 0
assert len(q1) == 0
raises(IndexError, lambda: q1.popleft())
assert raises(IndexError, lambda: q1.popleft())

def test_PriorityQueue():
pq1 = PriorityQueue(implementation='linked_list')
Expand Down

0 comments on commit b2e588c

Please sign in to comment.