Skip to content

Commit

Permalink
fix assert message
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Sep 21, 2022
1 parent b7d7275 commit 0a69dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/gov/client/cli/prompt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func TestPromptParseInteger(t *testing.T) {

v, err := cli.Prompt(st{}, "")
assert.Nil(t, err, "expected a nil error")
assert.Equal(t, tc.want, v.I, "expected a value of zero")
assert.Equal(t, tc.want, v.I, "expected %d = %d", tc.want, v.I)
})
}
}

0 comments on commit 0a69dac

Please sign in to comment.