Merge pull request #30215 from WeiZhang555/fix-go-vet

Fix escaped go vet error
Upstream-commit: d3245371176735763b0ef8a63609432586cdee3e
Component: engine
This commit is contained in:
Akihiro Suda
2017-01-18 12:48:22 +09:00
committed by GitHub

View File

@ -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))
}
}