fix everysingle lint issue

This commit is contained in:
2025-04-18 11:58:15 +02:00
parent 56fe0f6f30
commit 1887454328
29 changed files with 435 additions and 170 deletions

View File

@@ -120,7 +120,7 @@ func TestHealthCheck_HealthCheckHandler(t *testing.T) {
hc.SetStatus(tt.args.status)
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/health", nil)
req, _ := http.NewRequestWithContext(t.Context(), "GET", "/health", http.NoBody)
r.ServeHTTP(w, req)
if got := w.Code; got != tt.statusCode {