aboutsummaryrefslogtreecommitdiffstats
path: root/trie/iterator_test.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-16 23:36:58 +0800
committerobscuren <geffobscura@gmail.com>2015-03-16 23:36:58 +0800
commit0dd9ac375b20fc597e205225db819e8847bcf971 (patch)
treedc63d665edf225977148e8c75f1626f3995b689f /trie/iterator_test.go
parentd338650089d7a01983c3a853d2f917243c4de064 (diff)
downloaddexon-0dd9ac375b20fc597e205225db819e8847bcf971.tar
dexon-0dd9ac375b20fc597e205225db819e8847bcf971.tar.gz
dexon-0dd9ac375b20fc597e205225db819e8847bcf971.tar.bz2
dexon-0dd9ac375b20fc597e205225db819e8847bcf971.tar.lz
dexon-0dd9ac375b20fc597e205225db819e8847bcf971.tar.xz
dexon-0dd9ac375b20fc597e205225db819e8847bcf971.tar.zst
dexon-0dd9ac375b20fc597e205225db819e8847bcf971.zip
undo
Diffstat (limited to 'trie/iterator_test.go')
-rw-r--r--trie/iterator_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/trie/iterator_test.go b/trie/iterator_test.go
index 5f95caa68..74d9e903c 100644
--- a/trie/iterator_test.go
+++ b/trie/iterator_test.go
@@ -22,7 +22,7 @@ func TestIterator(t *testing.T) {
it := trie.Iterator()
for it.Next() {
- v[it.Key.Str()] = true
+ v[string(it.Key)] = true
}
for k, found := range v {