aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/topic_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-17 19:11:46 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-17 19:11:46 +0800
commit4afc22ba6e79fe951256251444b4a5b8d38b50fb (patch)
treedff06f8e9569293df1a20d6b38cc76c42e31a236 /whisper/topic_test.go
parentbd14bd6c5b8fcfb2430720da58de152dbbcb84ab (diff)
downloaddexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.gz
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.bz2
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.lz
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.xz
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.zst
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.zip
whisper: cleanup lefover scoping
Diffstat (limited to 'whisper/topic_test.go')
-rw-r--r--whisper/topic_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/topic_test.go b/whisper/topic_test.go
index 5f8583987..4015079dc 100644
--- a/whisper/topic_test.go
+++ b/whisper/topic_test.go
@@ -57,7 +57,7 @@ func TestTopicSetCreation(t *testing.T) {
for i, tt := range topicCreationTests {
topics[i] = NewTopic(tt.data)
}
- set := NewTopicSet(topics)
+ set := newTopicSet(topics)
for i, tt := range topicCreationTests {
topic := NewTopic(tt.data)
if _, ok := set[topic.String()]; !ok {