From 06c2098d6a6c2618cd38b1e8a4bee6d6aba29fd7 Mon Sep 17 00:00:00 2001 From: VolodymyrBg Date: Mon, 29 Sep 2025 08:40:51 +0300 Subject: [PATCH] trie: fix TestReplication error message to show actual value --- trie/trie_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/trie_test.go b/trie/trie_test.go index 22c3494f47..b8b8edb33e 100644 --- a/trie/trie_test.go +++ b/trie/trie_test.go @@ -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()) } }