1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

fix websocket test

This commit is contained in:
Darien Raymond 2017-10-22 16:04:39 +02:00
parent 233bb08e56
commit 9f7fbd9a04

View File

@ -6,7 +6,6 @@ import (
"testing"
"time"
"v2ray.com/core/common"
"v2ray.com/core/common/net"
"v2ray.com/core/testing/assert"
tlsgen "v2ray.com/core/testing/tls"
@ -89,7 +88,7 @@ func Test_listenWSAndDial_TLS(t *testing.T) {
})
listen, err := ListenWS(ctx, net.DomainAddress("localhost"), 13143, func(ctx context.Context, conn internet.Connection) bool {
go func() {
common.Must(conn.Close())
_ = conn.Close()
}()
return true
})
@ -98,5 +97,5 @@ func Test_listenWSAndDial_TLS(t *testing.T) {
conn, err := Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13143))
assert.Error(err).IsNil()
common.Must(conn.Close())
_ = conn.Close()
}