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

reduce time spent on kcp test

This commit is contained in:
Darien Raymond 2016-11-28 22:05:57 +01:00
parent 1b765c66da
commit 5ffabe1148
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -92,7 +92,9 @@ func TestDialAndListen(t *testing.T) {
}
wg.Wait()
time.Sleep(20 * time.Second)
for i := 0; i < 60 && listerner.ActiveConnections() > 0; i++ {
time.Sleep(500 * time.Millisecond)
}
assert.Int(listerner.ActiveConnections()).Equals(0)
listerner.Close()