Browse Source

skip domain socket test on windows

pull/1524/head^2
Darien Raymond 6 years ago
parent
commit
8070e7d1e2
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 5
      testing/scenarios/transport_test.go

5
testing/scenarios/transport_test.go

@ -2,6 +2,7 @@ package scenarios
import (
"os"
"runtime"
"testing"
"time"
@ -143,6 +144,10 @@ func TestHttpConnectionHeader(t *testing.T) {
}
func TestDomainSocket(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Not supported on windows")
return
}
assert := With(t)
tcpServer := tcp.Server{

Loading…
Cancel
Save