aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/whisperv6/filter_test.go
diff options
context:
space:
mode:
authorVlad <gluk256@gmail.com>2018-02-28 22:05:35 +0800
committerVlad <gluk256@gmail.com>2018-02-28 22:05:35 +0800
commitd24d10a764457937f1bda72053c82d98ac95dd7a (patch)
tree0cb1229a0a2f615914a62efcb4051d223ec47434 /whisper/whisperv6/filter_test.go
parentc733792be4b49ec47c5307b1a3b8fa116ea16933 (diff)
downloadgo-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.tar
go-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.tar.gz
go-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.tar.bz2
go-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.tar.lz
go-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.tar.xz
go-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.tar.zst
go-tangerine-d24d10a764457937f1bda72053c82d98ac95dd7a.zip
whisper: style fixes
Diffstat (limited to 'whisper/whisperv6/filter_test.go')
-rw-r--r--whisper/whisperv6/filter_test.go12
1 files changed, 1 insertions, 11 deletions
diff --git a/whisper/whisperv6/filter_test.go b/whisper/whisperv6/filter_test.go
index 491e137bd..0bb7986c3 100644
--- a/whisper/whisperv6/filter_test.go
+++ b/whisper/whisperv6/filter_test.go
@@ -313,16 +313,6 @@ func TestMatchEnvelope(t *testing.T) {
if err != nil {
t.Fatalf("failed Wrap with seed %d: %s.", seed, err)
}
- match := fsym.MatchEnvelope(env)
- if !match {
- // topic mismatch should have no affect, as topics are handled by topic matchers
- t.Fatalf("failed MatchEnvelope symmetric with seed %d.", seed)
- }
- match = fasym.MatchEnvelope(env)
- if !match {
- // topic mismatch should have no affect, as topics are handled by topic matchers
- t.Fatalf("failed MatchEnvelope asymmetric with seed %d.", seed)
- }
// encrypt symmetrically
i := mrand.Int() % 4
@@ -338,7 +328,7 @@ func TestMatchEnvelope(t *testing.T) {
}
// symmetric + matching topic: match
- match = fsym.MatchEnvelope(env)
+ match := fsym.MatchEnvelope(env)
if !match {
t.Fatalf("failed MatchEnvelope() symmetric with seed %d.", seed)
}