Fix lint issues

This commit is contained in:
2024-11-28 21:55:01 +01:00
parent f5d616fe00
commit 9b4db528ca
2 changed files with 10 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ func TestAuthenticateMiddleware(t *testing.T) {
// Create test handler
nextCalled := false
next := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
next := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
nextCalled = true
w.WriteHeader(http.StatusOK)
})