aboutsummaryrefslogtreecommitdiffstats
path: root/chain/bloom_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'chain/bloom_test.go')
-rw-r--r--chain/bloom_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/chain/bloom_test.go b/chain/bloom_test.go
deleted file mode 100644
index 13c0d94e4..000000000
--- a/chain/bloom_test.go
+++ /dev/null
@@ -1,20 +0,0 @@
-package chain
-
-import "testing"
-
-func TestBloomFilter(t *testing.T) {
- bf := NewBloomFilter(nil)
-
- a := []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 0}
- bf.Set(a)
-
- b := []byte{10, 11, 12, 13, 14, 15, 16, 17, 18, 19}
-
- if bf.Search(a) == false {
- t.Error("Expected 'a' to yield true using a bloom filter")
- }
-
- if bf.Search(b) {
- t.Error("Expected 'b' not to field trie using a bloom filter")
- }
-}