drop incorrect test

The test for bitmap-to-array succeeding doesn't work with roaringParanoia,
which *does* intentionally panic at that point. Possibly we should also
drop the corresponding logic that tries to prevent it from panicing,
since it won't work with the paranoia flag on anyway.
This commit is contained in:
Seebs 2022-03-30 11:02:33 -05:00
parent 11a5178471
commit 86088fd688

View file

@ -176,14 +176,6 @@ func TestSliceContainers(t *testing.T) {
})
}
func TestContainersFB1247(t *testing.T) {
bm := [bitmapN]uint64{0xF}
co := NewContainerBitmap(1, bm[:])
co = co.bitmapToArray()
//should not panic
}
func genRun(r *rand.Rand) Interval16 {
gen:
dat := r.Uint32()