This commit is contained in:
obscuren
2015-03-16 16:36:58 +01:00
parent d338650089
commit 0dd9ac375b
5 changed files with 68 additions and 90 deletions

View File

@ -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 {