aboutsummaryrefslogtreecommitdiffstats
path: root/trie/iterator_test.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-16 23:28:16 +0800
committerobscuren <geffobscura@gmail.com>2015-03-16 23:28:16 +0800
commitd338650089d7a01983c3a853d2f917243c4de064 (patch)
tree6c7852e9e75c4ba1ff476f4c77e25adfae135e35 /trie/iterator_test.go
parent20b7162a6206e61a39d799a5adf84379c9c8c818 (diff)
downloadgo-tangerine-d338650089d7a01983c3a853d2f917243c4de064.tar
go-tangerine-d338650089d7a01983c3a853d2f917243c4de064.tar.gz
go-tangerine-d338650089d7a01983c3a853d2f917243c4de064.tar.bz2
go-tangerine-d338650089d7a01983c3a853d2f917243c4de064.tar.lz
go-tangerine-d338650089d7a01983c3a853d2f917243c4de064.tar.xz
go-tangerine-d338650089d7a01983c3a853d2f917243c4de064.tar.zst
go-tangerine-d338650089d7a01983c3a853d2f917243c4de064.zip
compilable trie (tests fail)
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 74d9e903c..5f95caa68 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[string(it.Key)] = true
+ v[it.Key.Str()] = true
}
for k, found := range v {