From b14fc5da7c89ba4d38b8ed7941e29e7e49c2bb70 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 1 Jun 2021 15:22:27 +0300 Subject: [PATCH] vm: increase waiting time for vm cli program --- pkg/vm/cli/cli_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/vm/cli/cli_test.go b/pkg/vm/cli/cli_test.go index 9c28b8ce6..999858647 100644 --- a/pkg/vm/cli/cli_test.go +++ b/pkg/vm/cli/cli_test.go @@ -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") } }