From e0a4831f27a1715f0814eeb86ca8e9fca2ac812d Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 21 May 2021 14:01:41 +1000 Subject: [PATCH] Fix bitmap-related benchmark --- misc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc_test.go b/misc_test.go index f3a37683..5190e4f4 100644 --- a/misc_test.go +++ b/misc_test.go @@ -35,7 +35,7 @@ func BenchmarkIterBitmapsDistinct(t *testing.B) { output := iter.ToSlice(iterBitmapsDistinct(&skipCopy, first, second)) t.StopTimer() assert.Equal(t, []interface{}{0, 3, 2}, output) - assert.Equal(t, []int{1}, skip.ToSortedSlice()) + assert.Equal(t, []bitmap.BitIndex{1}, skip.ToSortedSlice()) } }