fix flaky client test

This commit is contained in:
Marten Seemann 2016-12-19 11:38:44 +07:00
parent 6ece13f9ab
commit ad7de3c99d
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA

View file

@ -6,6 +6,7 @@ import (
"errors" "errors"
"net" "net"
"runtime" "runtime"
"time"
"github.com/lucas-clemente/quic-go/protocol" "github.com/lucas-clemente/quic-go/protocol"
"github.com/lucas-clemente/quic-go/qerr" "github.com/lucas-clemente/quic-go/qerr"
@ -61,6 +62,7 @@ var _ = Describe("Client", func() {
}) })
It("properly closes the client", func(done Done) { It("properly closes the client", func(done Done) {
time.Sleep(10 * time.Millisecond) // Wait for old goroutines to finish
numGoRoutines := runtime.NumGoroutine() numGoRoutines := runtime.NumGoroutine()
startUDPConn() startUDPConn()
var stoppedListening bool var stoppedListening bool