Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin Lobo committed Jul 5, 2024
1 parent ed8f949 commit 74fbd81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ecosystem/http/middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func TestPreAndPostCallMiddleware(t *testing.T) {
require.NoError(t, err)
require.Greater(t, n, 0)

return nil
return nil // nolint:unparam
}

req, err := http.NewRequest("GET", "url", nil)
Expand Down Expand Up @@ -183,7 +183,7 @@ func TestMiddlewareAdapter(t *testing.T) {
require.NoError(t, err)
require.Greater(t, n, 0)

return nil
return nil // nolint:unparam
}

req, err := http.NewRequest("GET", "url", nil)
Expand Down Expand Up @@ -251,7 +251,7 @@ func TestMiddlewareReverseAdapter(t *testing.T) {
require.NoError(t, err)
require.Greater(t, n, 0)

return nil
return nil // nolint:unparam
}

req, err := http.NewRequest("GET", "url", nil)
Expand Down

0 comments on commit 74fbd81

Please sign in to comment.