1
0
mirror of https://github.com/golang/go synced 2024-11-18 10:54:40 -07:00

net: fix vet missed format error in test

Change-Id: I73c0aeb4b27fec84149c8e89753b27ff2190eabf
Reviewed-on: https://go-review.googlesource.com/10074
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
This commit is contained in:
Mikio Hara 2015-05-14 12:26:27 +09:00
parent 85a1577800
commit b83b011100

View File

@ -521,7 +521,7 @@ third:
func TestFileError(t *testing.T) {
switch runtime.GOOS {
case "windows":
t.Skip("not supported on %s", runtime.GOOS)
t.Skipf("not supported on %s", runtime.GOOS)
}
f, err := ioutil.TempFile("", "go-nettest")