From 448e5593bfefc106e8b72327635336caed9ef174 Mon Sep 17 00:00:00 2001 From: "jaeseung.bae" Date: Wed, 27 Mar 2024 20:05:05 +0900 Subject: [PATCH] chore: fix test --- types/coin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/coin_test.go b/types/coin_test.go index 6b86d60a63..4af7a46e00 100644 --- a/types/coin_test.go +++ b/types/coin_test.go @@ -460,7 +460,7 @@ func TestCoinsAddCoalescesDuplicateDenominations(t *testing.T) { {"den", sdk.NewInt(11)}, } - if !got.IsEqual(want) { + if !got.Equal(want) { t.Fatalf("Wrong result\n\tGot: %s\n\tWant: %s", got, want) } }