race in Triton SD Test (#3885)

This commit is contained in:
Krasi Georgiev 2018-02-26 12:03:50 +02:00 committed by Brian Brazil
parent 7af69ad988
commit 4fa7e719f4

View file

@ -86,7 +86,11 @@ func TestTritonSDRun(t *testing.T) {
assert.Nil(t, err)
assert.NotNil(t, td)
go td.Run(ctx, ch)
wait := make(chan struct{})
go func() {
td.Run(ctx, ch)
close(wait)
}()
select {
case <-time.After(60 * time.Millisecond):
@ -96,6 +100,7 @@ func TestTritonSDRun(t *testing.T) {
}
cancel()
<-wait
}
func TestTritonSDRefreshNoTargets(t *testing.T) {