Commit e25d73d7 authored by Alex Brainman's avatar Alex Brainman

net: fix format string in TestAcceptIgnoreSomeErrors

LGTM=mikioh.mikioh
R=golang-codereviews, mikioh.mikioh
CC=golang-codereviews
https://golang.org/cl/84340043
parent df8ec65b
......@@ -84,7 +84,7 @@ func TestAcceptIgnoreSomeErrors(t *testing.T) {
}
err = cmd.Start()
if err != nil {
t.Fatalf("cmd.Start failed: %v\n%s\n", err)
t.Fatalf("cmd.Start failed: %v\n", err)
}
outReader := bufio.NewReader(stdout)
for {
......
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