Browse Source

http2: fix a nit

Change-Id: I3798117511b4c9d9033a3b5dbefbae34d7bec639
Reviewed-on: https://go-review.googlesource.com/19244
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Mikio Hara 10 years ago
parent
commit
7f88271ea9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      http2/transport_test.go

+ 1 - 1
http2/transport_test.go

@@ -387,7 +387,7 @@ func TestTransportBody(t *testing.T) {
 		defer res.Body.Close()
 		defer res.Body.Close()
 		ri := <-gotc
 		ri := <-gotc
 		if ri.err != nil {
 		if ri.err != nil {
-			t.Errorf("%#d: read error: %v", i, ri.err)
+			t.Errorf("#%d: read error: %v", i, ri.err)
 			continue
 			continue
 		}
 		}
 		if got := string(ri.slurp); got != tt.body {
 		if got := string(ri.slurp); got != tt.body {