bump the timeout to a very high level to protect against laggy CI machines

This commit is contained in:
Megan Marsh 2020-01-07 09:59:25 -08:00
parent af2c4346f8
commit be3c1ef106
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ func TestStepShutdown_command(t *testing.T) {
var action multistep.StepAction
select {
case action = <-resultCh:
case <-time.After(300 * time.Millisecond):
case <-time.After(5 * time.Second):
t.Fatal("should've returned by now")
}