vm: increase waiting time for vm cli program

This commit is contained in:
Anna Shaleva 2021-06-01 15:22:27 +03:00
parent 1dbf1d4310
commit b14fc5da7c

View file

@ -87,7 +87,7 @@ func (e *executor) runProg(t *testing.T, commands ...string) {
}()
select {
case <-e.ch:
case <-time.After(time.Second):
case <-time.After(2 * time.Second):
require.Fail(t, "command took too long time")
}
}