Skip to content

Commit

Permalink
ignore unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
kpacha committed Aug 22, 2024
1 parent 5017932 commit 8d66143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwk_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func TestJWKClient_globalCache(t *testing.T) {
}]}`)

var count uint64
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
// Content-Type defined in https://datatracker.ietf.org/doc/html/rfc7517#section-8.5.1
w.Header().Add("Content-Type", "application/jwk-set+json")
atomic.AddUint64(&count, 1)
Expand Down

0 comments on commit 8d66143

Please sign in to comment.