remove a test that was not testing the correct thing

This commit is contained in:
Travis 2017-06-22 16:07:21 -05:00
parent 8fd752ddb1
commit fc6898a933
No known key found for this signature in database
GPG key ID: 7F08008DFD9314C9

View file

@ -270,13 +270,6 @@ func TestBitmap_DifferenceArrayRun(t *testing.T) {
if n := result.Count(); n != 6 {
t.Fatalf("unexpected n: %d", n)
}
// ensure empty array returns empty
bm2 := roaring.NewBitmap()
result = bm2.Difference(bm1)
if n := result.Count(); n != 0 {
t.Fatalf("unexpected n: %d", n)
}
}
func TestBitmap_Union(t *testing.T) {