Skip to content

Commit f90f40b

Browse files
fixed linting issue
1 parent 40e5805 commit f90f40b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/framework/helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func ExpectRemoteFileContents(imageSelector string, namespace string, filePath s
7878
func ExpectLocalCurlContents(urlString string, contents string) {
7979
client := resty.New()
8080
err := wait.PollImmediate(time.Second, time.Minute*2, func() (done bool, err error) {
81-
resp, err := client.R().
81+
resp, _ := client.R().
8282
EnableTrace().
8383
Get(urlString)
8484
return strings.TrimSpace(string(resp.Body())) == strings.TrimSpace(contents), nil

0 commit comments

Comments
 (0)