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

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

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