1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:20:22 -07:00

net/http: make a test fail harder, earlier

LGTM=dave
R==r, r, dave
CC=golang-codereviews
https://golang.org/cl/59810043
This commit is contained in:
Brad Fitzpatrick 2014-02-03 16:01:58 -05:00
parent 07cbf550ce
commit 4723308ff5

View File

@ -1347,7 +1347,7 @@ func TestTransportCloseResponseBody(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
if !bytes.Equal(buf, want) { if !bytes.Equal(buf, want) {
t.Errorf("read %q; want %q", buf, want) t.Fatalf("read %q; want %q", buf, want)
} }
didClose := make(chan error, 1) didClose := make(chan error, 1)
go func() { go func() {