Fixed tests for 'types'

This commit is contained in:
obscuren
2014-11-18 19:52:45 +01:00
parent 675ba4d7eb
commit 93e693be72
4 changed files with 7 additions and 5 deletions

View File

@@ -132,7 +132,7 @@ func BenchmarkUpdate(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
trie.UpdateString(fmt.Sprintf("aaaaaaaaa%d", base, i), "value")
trie.UpdateString(fmt.Sprintf("aaaaaaaaa%d", i), "value")
}
trie.Hash()
}