Fix bitmap-related benchmark

This commit is contained in:
Matt Joiner 2021-05-21 14:01:41 +10:00
parent c895a21a16
commit e0a4831f27
1 changed files with 1 additions and 1 deletions

View File

@ -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())
}
}