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 GitHub
parent 265db06242
commit c5a1c35cfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -326,7 +326,7 @@ func TestReplication(t *testing.T) {
updateString(trie2, val.k, val.v)
}
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())
}
}