diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-16 23:36:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-16 23:36:58 +0800 |
commit | 0dd9ac375b20fc597e205225db819e8847bcf971 (patch) | |
tree | dc63d665edf225977148e8c75f1626f3995b689f /trie/iterator_test.go | |
parent | d338650089d7a01983c3a853d2f917243c4de064 (diff) | |
download | dexon-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.go | 2 |
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 { |