Browse Source

temporarily skip TLS test in ws

pull/1524/head^2
Darien Raymond 6 years ago
parent
commit
e7d45d8d63
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 5
      transport/internet/websocket/ws_test.go

5
transport/internet/websocket/ws_test.go

@ -3,6 +3,7 @@ package websocket_test
import (
"bytes"
"context"
"runtime"
"testing"
"time"
@ -102,6 +103,10 @@ func TestDialWithRemoteAddr(t *testing.T) {
}
func Test_listenWSAndDial_TLS(t *testing.T) {
if runtime.GOARCH == "arm64" {
return
}
assert := With(t)
start := time.Now()

Loading…
Cancel
Save