net/http, net/http/httputil: fix nits found by vet

Change-Id: Idf02428591f61dc58f654fdaf0e3a55f8b8a1060
Reviewed-on: https://go-review.googlesource.com/18350
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Mikio Hara 2016-01-07 09:36:52 +09:00
parent 4aedbf5be4
commit c063e342f8
2 changed files with 3 additions and 3 deletions

View file

@ -392,7 +392,7 @@ func TestReverseProxy_Post(t *testing.T) {
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
slurp, err := ioutil.ReadAll(r.Body)
if err != nil {
t.Error("Backend body read = %v", err)
t.Errorf("Backend body read = %v", err)
}
if len(slurp) != len(requestBody) {
t.Errorf("Backend read %d request body bytes; want %d", len(slurp), len(requestBody))