From 8456466a39b5aa1c0967b17c42cd4a93e9e32fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Thu, 18 Jul 2024 15:41:37 +0200 Subject: [PATCH] Fix lint --- handlers/geolocation/geolocation_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/geolocation/geolocation_test.go b/handlers/geolocation/geolocation_test.go index 4fe2ac2ca..49a9ebb16 100644 --- a/handlers/geolocation/geolocation_test.go +++ b/handlers/geolocation/geolocation_test.go @@ -167,7 +167,7 @@ func mockHandlers(t *testing.T) *GeolocationHandlersCollection { w.WriteHeader(http.StatusInternalServerError) return } - w.Write(res) + w.Write(res) // nolint:errcheck }) testServer := httptest.NewServer(router)