Commit bd9af2a7 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke

Merge pull request #10 from josephyzhou/master

fix build failure
parents 8cf2dee4 a0704364
......@@ -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")
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment