Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KN4CK3R committed Aug 9, 2022
1 parent a6a736e commit 344c1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integrations/api_packages_nuget_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/stretchr/testify/assert"
)

func addNuGetApiKeyHeader(request *http.Request, token string) *http.Request {
func addNuGetAPIKeyHeader(request *http.Request, token string) *http.Request {
request.Header.Set("X-Nuget-Apikey", token)
return request
}
Expand Down Expand Up @@ -70,7 +70,7 @@ func TestPackageNuGet(t *testing.T) {
MakeRequest(t, req, http.StatusOK)

req = NewRequest(t, "GET", fmt.Sprintf("%s/index.json", url))
req = addNuGetApiKeyHeader(req, token)
req = addNuGetAPIKeyHeader(req, token)
resp := MakeRequest(t, req, http.StatusOK)

var result nuget.ServiceIndexResponse
Expand Down

0 comments on commit 344c1e5

Please sign in to comment.