this timeout regularly flakes on Travis, I suspect because the instances running the tests are brutally underpowered. Increase the fudge factor.

This commit is contained in:
Megan Marsh 2019-08-21 16:36:42 -07:00
parent 17d9a85895
commit fcef7e2d85
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ func TestStepInstanceInfo_errorTimeout(t *testing.T) {
errCh := make(chan error, 1)
go func() {
<-time.After(10 * time.Millisecond)
<-time.After(50 * time.Millisecond)
errCh <- nil
}()