Delay Closing Connection so that test have chance to complete(Additional)

pull/2531/head
Shelikhoo 2019-06-07 12:05:06 +08:00 committed by Nicholas Wang
parent 6f541f60bf
commit 289105fa8c
No known key found for this signature in database
GPG Key ID: F20CA399C9BD9100
1 changed files with 5 additions and 1 deletions

View File

@ -1165,7 +1165,6 @@ func TestVMessGCMMuxUDP(t *testing.T) {
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
common.Must(err)
defer CloseAllServers(servers)
for range "abcd" {
var errg errgroup.Group
@ -1178,4 +1177,9 @@ func TestVMessGCMMuxUDP(t *testing.T) {
}
time.Sleep(time.Second)
}
defer func(){
<-time.After(5*time.Second)
CloseAllServers(servers)
}()
}