Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
Signed-off-by: Jacek Ewertowski <jewertow@redhat.com>
  • Loading branch information
jewertow committed Oct 24, 2023
1 parent e4afe2b commit e33ae28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/tests/tasks/extensions/threescale_wasm_plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func TestThreeScaleWasmPlugin(t *testing.T) {
ingressGatewayHost := istio.GetIngressGatewayHost(t, meshNamespace)
headersURL := fmt.Sprintf("http://%s/headers", ingressGatewayHost)
token := string(curl.Request(t, tokenURL, nil))
token = strings.Trim(string(curl.Request(t, tokenURL, nil)), "\n")
token = strings.Trim(token, "\n")
retry.UntilSuccess(t, func(t test.TestHelper) {
curl.Request(t, headersURL, request.WithHeader("Authorization", "Bearer "+token), require.ResponseStatus(http.StatusOK))
})
Expand Down

0 comments on commit e33ae28

Please sign in to comment.