Commit ddef2d27 authored by Guobiao Mei's avatar Guobiao Mei Committed by Minux Ma

net/http: use t.Fatalf rather than t.Fatal in cookie_test.go

Change-Id: I60bbb7deb7462d1ca884677b4f86bd54b20b3f35
Reviewed-on: https://go-review.googlesource.com/2140Reviewed-by: 's avatarMinux Ma <minux@golang.org>
parent 0668b595
...@@ -349,7 +349,7 @@ func TestSetCookieDoubleQuotes(t *testing.T) { ...@@ -349,7 +349,7 @@ func TestSetCookieDoubleQuotes(t *testing.T) {
{Name: "quoted3", Value: "both"}, {Name: "quoted3", Value: "both"},
} }
if len(got) != len(want) { if len(got) != len(want) {
t.Fatal("got %d cookies, want %d", len(got), len(want)) t.Fatalf("got %d cookies, want %d", len(got), len(want))
} }
for i, w := range want { for i, w := range want {
g := got[i] g := got[i]
......
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