Commit 48fa4a10 authored by Mikio Hara's avatar Mikio Hara

net: fix typo in skip message

R=golang-dev, akumar
CC=golang-dev
https://golang.org/cl/7523044
parent 3fc244f3
...@@ -163,7 +163,7 @@ func TestUDPConnSpecificMethods(t *testing.T) { ...@@ -163,7 +163,7 @@ func TestUDPConnSpecificMethods(t *testing.T) {
func TestIPConnSpecificMethods(t *testing.T) { func TestIPConnSpecificMethods(t *testing.T) {
switch runtime.GOOS { switch runtime.GOOS {
case "plan9": case "plan9":
t.Skipf("skipping read test on %q", runtime.GOOS) t.Skipf("skipping test on %q", runtime.GOOS)
} }
if os.Getuid() != 0 { if os.Getuid() != 0 {
t.Skipf("skipping test; must be root") t.Skipf("skipping test; must be root")
...@@ -220,7 +220,7 @@ func TestIPConnSpecificMethods(t *testing.T) { ...@@ -220,7 +220,7 @@ func TestIPConnSpecificMethods(t *testing.T) {
func TestUnixListenerSpecificMethods(t *testing.T) { func TestUnixListenerSpecificMethods(t *testing.T) {
switch runtime.GOOS { switch runtime.GOOS {
case "plan9", "windows": case "plan9", "windows":
t.Skipf("skipping read test on %q", runtime.GOOS) t.Skipf("skipping test on %q", runtime.GOOS)
} }
addr := testUnixAddr() addr := testUnixAddr()
......
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