From ecd5d58562452267ec7d0439b2f3caf8c05ebe45 Mon Sep 17 00:00:00 2001 From: Kevin Atkinson Date: Fri, 31 Aug 2018 15:01:41 -0400 Subject: [PATCH] Gofmt. --- multibase_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/multibase_test.go b/multibase_test.go index d688e66..f389f5c 100644 --- a/multibase_test.go +++ b/multibase_test.go @@ -7,13 +7,13 @@ import ( ) func TestMap(t *testing.T) { - for s,e := range Encodings { + for s, e := range Encodings { s2 := EncodingToStr[e] if s != s2 { t.Errorf("round trip failed on encoding map: %s != %s", s, s2) } } - for e,s := range EncodingToStr { + for e, s := range EncodingToStr { e2 := Encodings[s] if e != e2 { t.Errorf("round trip failed on encoding map: '%c' != '%c'", e, e2)