Merge pull request #10 from josephyzhou/master

fix build failure
This commit is contained in:
Jeffrey Wilcke 2014-02-02 03:23:00 -08:00
commit bd9af2a7fd
1 changed files with 1 additions and 2 deletions

View File

@ -27,8 +27,7 @@ func TestTestRunner(t *testing.T) {
for key, value := range source.Inputs {
trie.Update(key, value)
}
if hex.EncodeToString([]byte(trie.Root)) != source.Expectation {
if hex.EncodeToString(trie.Root.([]byte)) != source.Expectation {
t.Error("trie root did not match")
}
})