diff options
Diffstat (limited to 'server_config_test.go')
-rw-r--r-- | server_config_test.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/server_config_test.go b/server_config_test.go index 303eba90..c88f9082 100644 --- a/server_config_test.go +++ b/server_config_test.go @@ -2,7 +2,6 @@ package roadrunner import ( "github.com/stretchr/testify/assert" - "runtime" "testing" "time" ) @@ -65,10 +64,6 @@ func Test_ServerConfig_SocketFactory(t *testing.T) { } func Test_ServerConfig_UnixSocketFactory(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("not supported on " + runtime.GOOS) - } - cfg := &ServerConfig{Relay: "unix://unix.sock"} f, err := cfg.makeFactory() if err != nil { @@ -89,10 +84,6 @@ func Test_ServerConfig_UnixSocketFactory(t *testing.T) { } func Test_ServerConfig_ErrorFactory(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("not supported on " + runtime.GOOS) - } - cfg := &ServerConfig{Relay: "uni:unix.sock"} f, err := cfg.makeFactory() assert.Nil(t, f) |