Skip to content

Commit

Permalink
Fix typing in test;
Browse files Browse the repository at this point in the history
  • Loading branch information
rossjones committed Mar 26, 2024
1 parent c0bdeca commit 728816f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lib/collections/priority_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (s *PriorityQueueSuite) TestDequeueWhere() {

s.Require().NotNil(qitem)
s.Require().Equal("B", qitem.Value)
s.Require().Equal(3, qitem.Priority)
s.Require().Equal(int64(3), qitem.Priority)
s.Require().Equal(count-1, pq.Len())

}
Expand Down

0 comments on commit 728816f

Please sign in to comment.