Skip to content

Commit 344c1e5

Browse files
committed
lint
1 parent a6a736e commit 344c1e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integrations/api_packages_nuget_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/stretchr/testify/assert"
2525
)
2626

27-
func addNuGetApiKeyHeader(request *http.Request, token string) *http.Request {
27+
func addNuGetAPIKeyHeader(request *http.Request, token string) *http.Request {
2828
request.Header.Set("X-Nuget-Apikey", token)
2929
return request
3030
}
@@ -70,7 +70,7 @@ func TestPackageNuGet(t *testing.T) {
7070
MakeRequest(t, req, http.StatusOK)
7171

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

7676
var result nuget.ServiceIndexResponse

0 commit comments

Comments
 (0)