Commit c2b40809 authored by Mikio Hara's avatar Mikio Hara Committed by Russ Cox

net/http: fix nit in test

Change-Id: I8c647e709d93a76636e04375609fceadf3754aa1
Reviewed-on: https://go-review.googlesource.com/18954Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent b4c9d01d
......@@ -822,7 +822,7 @@ func TestReadResponseErrors(t *testing.T) {
if err := matchErr(rerr, tt.wantErr); err != nil {
name := tt.name
if name == "" {
name = fmt.Sprintf("%i. input %q", i, tt.in)
name = fmt.Sprintf("%d. input %q", i, tt.in)
}
t.Errorf("%s: %v", name, err)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment