Skip to content

Commit ba3abcd

Browse files
committed
confighttp: don't run unix-specific test on macos
1 parent 0c5a4ff commit ba3abcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/confighttp/server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ func TestHttpServerTLS(t *testing.T) {
280280
}
281281

282282
func TestHttpServerTransport(t *testing.T) {
283-
if runtime.GOOS != "windows" {
283+
if runtime.GOOS == "unix" {
284284
t.Run("unix", func(t *testing.T) {
285285
addr := "@" + t.Name() // abstract unix socket
286286
sc := &ServerConfig{

0 commit comments

Comments
 (0)