mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-25 03:56:34 +00:00
vm: increase waiting time for vm cli program
This commit is contained in:
parent
1dbf1d4310
commit
b14fc5da7c
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ func (e *executor) runProg(t *testing.T, commands ...string) {
|
||||||
}()
|
}()
|
||||||
select {
|
select {
|
||||||
case <-e.ch:
|
case <-e.ch:
|
||||||
case <-time.After(time.Second):
|
case <-time.After(2 * time.Second):
|
||||||
require.Fail(t, "command took too long time")
|
require.Fail(t, "command took too long time")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue