Commit f030eb63 authored by Mikio Hara's avatar Mikio Hara

net: fix nit

Change-Id: Iec469846dc8b5a747ad81690000f1f6f53721ea1
Reviewed-on: https://go-review.googlesource.com/32372Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent b4e714e5
...@@ -207,6 +207,6 @@ func TestWritevError(t *testing.T) { ...@@ -207,6 +207,6 @@ func TestWritevError(t *testing.T) {
buffers[i] = buf buffers[i] = buf
} }
if _, err := buffers.WriteTo(c1); err == nil { if _, err := buffers.WriteTo(c1); err == nil {
t.Fatalf("Buffers.WriteTo(closed conn) succeeded, want error", err) t.Fatal("Buffers.WriteTo(closed conn) succeeded, want error")
} }
} }
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