Fixed a minor issue where a string is expected but returns slice

This commit is contained in:
obscuren
2014-02-25 10:50:53 +01:00
parent 0afdedb01a
commit b30b9ab8cb
2 changed files with 9 additions and 12 deletions

View File

@ -1,7 +1,6 @@
package ethutil
import (
"fmt"
"reflect"
"testing"
)
@ -160,15 +159,13 @@ func TestTrieIterator(t *testing.T) {
trie.Update("ca", LONG_WORD)
trie.Update("cat", LONG_WORD)
lenBefore := len(trie.cache.nodes)
it := trie.NewIterator()
fmt.Println("purging")
fmt.Println("len =", it.Purge())
/*
for it.Next() {
k := it.Key()
v := it.Value()
if num := it.Purge(); num != 3 {
t.Errorf("Expected purge to return 3, got %d", num)
}
fmt.Println(k, v)
}
*/
if lenBefore == len(trie.cache.nodes) {
t.Errorf("Expected cached nodes to be deleted")
}
}