mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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:
parent
4aedbf5be4
commit
c063e342f8
2 changed files with 3 additions and 3 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue