diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-04-17 19:11:46 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-04-17 19:11:46 +0800 |
commit | 4afc22ba6e79fe951256251444b4a5b8d38b50fb (patch) | |
tree | dff06f8e9569293df1a20d6b38cc76c42e31a236 /whisper/topic_test.go | |
parent | bd14bd6c5b8fcfb2430720da58de152dbbcb84ab (diff) | |
download | dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.gz dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.zst dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.zip |
whisper: cleanup lefover scoping
Diffstat (limited to 'whisper/topic_test.go')
-rw-r--r-- | whisper/topic_test.go | 2 |
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 { |