Skip to content

Commit

Permalink
Cleanup test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kahan committed Jan 12, 2017
1 parent d82b30d commit a82d97a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions inverse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func TestInverseBloomFilter_Encode(t *testing.T) {
if err := gob.NewEncoder(&buf).Encode(f); err != nil {
t.Error(err)
}
//

f2 := NewInverseBloomFilter(10000)
if err := gob.NewDecoder(&buf).Decode(f2); err != nil {
t.Error(err)
Expand All @@ -105,7 +105,6 @@ func TestInverseBloomFilter_Encode(t *testing.T) {
t.Errorf("Expected both filters to Test the same for %i", i)
}
}

}

func BenchmarkInverseAdd(b *testing.B) {
Expand Down

0 comments on commit a82d97a

Please sign in to comment.