From 8a1af2d62beb70ef1eb41fd369bac57528ed5f99 Mon Sep 17 00:00:00 2001 From: marcello33 Date: Wed, 28 Feb 2024 15:28:51 +0100 Subject: [PATCH] chg: remove comment --- x/gov/client/cli/prompt_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x/gov/client/cli/prompt_test.go b/x/gov/client/cli/prompt_test.go index 99f990f6083c..e5b01d7da37e 100644 --- a/x/gov/client/cli/prompt_test.go +++ b/x/gov/client/cli/prompt_test.go @@ -52,8 +52,7 @@ func TestPromptIntegerOverflow(t *testing.T) { v, err := cli.Prompt(st{}, "") assert.Equal(t, st{}, v, "expected a value of zero") require.NotNil(t, err, "expected a report of an overflow") - // TODO HV2: this fails due to changes in suggestedProposalTypes (prompt.go). Fix it? - //require.Contains(t, err.Error(), "range") + require.Contains(t, err.Error(), "range") }) } }