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

fix blackhole test for windows

This commit is contained in:
Darien Raymond 2019-02-07 19:29:32 +01:00
parent b234cfb4c4
commit 0f805ef81d
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -2,7 +2,6 @@ package scenarios
import (
"context"
"io"
"io/ioutil"
"net/http"
"net/url"
@ -442,8 +441,8 @@ func TestBlackhole(t *testing.T) {
common.Must(err)
defer CloseAllServers(servers)
if err := testTCPConn(serverPort2, 1024, time.Second*5)(); err != io.EOF {
t.Error("unexpected error: ", err)
if err := testTCPConn(serverPort2, 1024, time.Second*5)(); err == nil {
t.Error("nil error")
}
}