From 39fee7d40ad9e91befd2b4f831a4344ff564c25f Mon Sep 17 00:00:00 2001 From: Brian Bland Date: Fri, 14 Nov 2014 15:44:49 -0800 Subject: [PATCH] Fixes formatting in errors_test.go to match gofmt rules --- errors_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errors_test.go b/errors_test.go index 580754f52..e6ec72f91 100644 --- a/errors_test.go +++ b/errors_test.go @@ -8,7 +8,7 @@ import ( // TestErrorCodes ensures that error code format, mappings and // marshaling/unmarshaling. round trips are stable. func TestErrorCodes(t *testing.T) { - for ec, _ := range errorCodeStrings { + for ec := range errorCodeStrings { if ec.String() != errorCodeStrings[ec] { t.Fatalf("error code string incorrect: %q != %q", ec.String(), errorCodeStrings[ec]) }