1
0
mirror of https://github.com/golang/go synced 2024-11-23 07:10:05 -07:00

os: remove extraneous 's' from TestStdPipe error message

Change-Id: I73674a90d88da630b09dcb75ced5d9f0d96c3c09
Reviewed-on: https://go-review.googlesource.com/43153
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Ian Lance Taylor 2017-05-10 12:57:55 -07:00
parent 643be70045
commit c061f51e72

View File

@ -87,7 +87,7 @@ func TestStdPipe(t *testing.T) {
t.Errorf("unexpected SIGPIPE signal for descriptor %d sig %t", dest, sig)
}
} else {
t.Errorf("unexpected exit status %v for descriptor %ds sig %t", err, dest, sig)
t.Errorf("unexpected exit status %v for descriptor %d sig %t", err, dest, sig)
}
}
}