Fixed test

This commit is contained in:
obscuren
2014-11-21 10:48:07 -05:00
parent 9b8a12b4b5
commit 8cf9ed0ea5
2 changed files with 4 additions and 3 deletions

View File

@ -215,13 +215,13 @@ func TestOutput(t *testing.T) {
for i := 0; i < 50; i++ {
trie.UpdateString(fmt.Sprintf("%s%d", base, i), "valueeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee")
}
trie.Hash()
fmt.Println("############################## FULL ################################")
fmt.Println(trie.root)
trie.Commit()
fmt.Println("############################## SMALL ################################")
trie2 := New(trie.roothash, trie.cache.backend)
trie2.GetString(base + "20")
fmt.Println("############################## SMALL ################################")
fmt.Println(trie2.root)
}