]> Cypherpunks repositories - gostls13.git/commitdiff
net: fix typo in skip message
authorMikio Hara <mikioh.mikioh@gmail.com>
Thu, 7 Mar 2013 10:17:18 +0000 (19:17 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Thu, 7 Mar 2013 10:17:18 +0000 (19:17 +0900)
R=golang-dev, akumar
CC=golang-dev
https://golang.org/cl/7523044

src/pkg/net/protoconn_test.go

index 2fe7d1d1fbd5cf475158d88ab87275c63b560518..25b0dfbca9b25a7298fae692b7fa4d66c13079be 100644 (file)
@@ -163,7 +163,7 @@ func TestUDPConnSpecificMethods(t *testing.T) {
 func TestIPConnSpecificMethods(t *testing.T) {
        switch runtime.GOOS {
        case "plan9":
-               t.Skipf("skipping read test on %q", runtime.GOOS)
+               t.Skipf("skipping test on %q", runtime.GOOS)
        }
        if os.Getuid() != 0 {
                t.Skipf("skipping test; must be root")
@@ -220,7 +220,7 @@ func TestIPConnSpecificMethods(t *testing.T) {
 func TestUnixListenerSpecificMethods(t *testing.T) {
        switch runtime.GOOS {
        case "plan9", "windows":
-               t.Skipf("skipping read test on %q", runtime.GOOS)
+               t.Skipf("skipping test on %q", runtime.GOOS)
        }
 
        addr := testUnixAddr()