trie: fix error message in test (#32772)

Fixes an error message in TestReplication
This commit is contained in:
VolodymyrBg 2025-09-29 13:23:43 +03:00 committed by Alvarez
parent faf987a054
commit ef132544aa

View file

@ -326,7 +326,7 @@ func TestReplication(t *testing.T) {
updateString(trie2, val.k, val.v) updateString(trie2, val.k, val.v)
} }
if trie2.Hash() != hash { if trie2.Hash() != hash {
t.Errorf("root failure. expected %x got %x", hash, hash) t.Errorf("root failure. expected %x got %x", hash, trie2.Hash())
} }
} }