Skip to content

Commit c5a1c35

Browse files
authored
trie: fix error message in test (#32772)
Fixes an error message in TestReplication
1 parent 265db06 commit c5a1c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trie/trie_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ func TestReplication(t *testing.T) {
326326
updateString(trie2, val.k, val.v)
327327
}
328328
if trie2.Hash() != hash {
329-
t.Errorf("root failure. expected %x got %x", hash, hash)
329+
t.Errorf("root failure. expected %x got %x", hash, trie2.Hash())
330330
}
331331
}
332332

0 commit comments

Comments
 (0)