Skip to content

Commit

Permalink
style: gofumpt
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy committed Aug 21, 2023
1 parent b7bc834 commit 54af1c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions util/bech32m/bech32m_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ func TestBech32M(t *testing.T) {
{"\x201xj0phk", InvalidCharacterError('\x20')},
{"\x7f1g6xzxy", InvalidCharacterError('\x7f')},
{"\x801vctc34", InvalidCharacterError('\x80')},
{"an84characterslonghumanreadablepartthatcontainsthetheexcludedcharactersbioandnumber11d6pts4",
InvalidLengthError(91)},
{
"an84characterslonghumanreadablepartthatcontainsthetheexcludedcharactersbioandnumber11d6pts4",
InvalidLengthError(91),
},
{"qyrz8wqd2c9m", InvalidSeparatorIndexError(-1)},
{"1qyrz8wqd2c9m", InvalidSeparatorIndexError(0)},
{"y1b0jsk6g", NonCharsetCharError(98)},
Expand Down

0 comments on commit 54af1c6

Please sign in to comment.