From 1abbdfe34bb833c11d4315c38b11edf1ebd42407 Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Sat, 2 Mar 2019 19:17:30 +0100 Subject: [PATCH] Fix test License: MIT Signed-off-by: Jakub Sztandera --- pq_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pq_test.go b/pq_test.go index 1c333f8..ab8b9ef 100644 --- a/pq_test.go +++ b/pq_test.go @@ -53,7 +53,7 @@ func TestCorrectnessOfPop(t *testing.T) { var priorities []int for q.Len() > 0 { i := q.Pop().(*TestElem).Priority - t.Log("popped %v", i) + t.Logf("popped %v", i) priorities = append(priorities, i) } if !sort.IntsAreSorted(priorities) { -- GitLab