From 54af1c694020e56eff896ca7b4eed4322428f904 Mon Sep 17 00:00:00 2001 From: Kay Date: Tue, 22 Aug 2023 03:03:01 +0800 Subject: [PATCH] style: gofumpt --- util/bech32m/bech32m_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/util/bech32m/bech32m_test.go b/util/bech32m/bech32m_test.go index edff90941..615a6cd4d 100644 --- a/util/bech32m/bech32m_test.go +++ b/util/bech32m/bech32m_test.go @@ -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)},