Merge pull request #30215 from WeiZhang555/fix-go-vet
Fix escaped go vet error
This commit is contained in:
commit
d324537117
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ func TestDownload(t *testing.T) {
|
|||
response.Body.Close()
|
||||
|
||||
if err != nil || string(actual) != expected {
|
||||
t.Fatalf("Expected the response %q, got err:%q, response:%q, actual:%q", expected, err, response, string(actual))
|
||||
t.Fatalf("Expected the response %q, got err:%q, actual:%q", expected, err, string(actual))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue