From 80d4aac2c64c40d533742c867103013b1f8a4b9f Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sat, 17 Feb 2024 16:09:05 +0800 Subject: [PATCH] fix(lint): should be written without leading space --- static_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static_test.go b/static_test.go index f4bc346..8b262ff 100644 --- a/static_test.go +++ b/static_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/assert" ) -// nolint:unparam +//nolint:unparam func performRequest(r http.Handler, method, path string) *httptest.ResponseRecorder { req, _ := http.NewRequestWithContext(context.Background(), method, path, nil) w := httptest.NewRecorder()