Merge pull request #8025 from hashicorp/fix_flaky_timeout_tset

Fix Travis timeouts
This commit is contained in:
Adrien Delorme 2019-08-22 14:47:49 +02:00 committed by GitHub
commit 6337735ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}()