Commit 7c31043c authored by Mikio Hara's avatar Mikio Hara Committed by Brad Fitzpatrick

os/exec: fix nit found by vet

Change-Id: I8085ed43d63215237a4871cc1e44257132a7f5de
Reviewed-on: https://go-review.googlesource.com/27130Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent b98d8cd5
......@@ -938,7 +938,7 @@ func TestContextCancel(t *testing.T) {
}
if err := w.Close(); err != nil {
t.Error("error closing write end of pipe: %v", err)
t.Errorf("error closing write end of pipe: %v", err)
}
<-readDone
......
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