From 693c376d211be5f4ad10ea0502a9e2b43e71667a Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Fri, 22 Oct 2021 12:14:37 +0300 Subject: [PATCH] vm: wait more for a test prog execution ending --- 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 246e83ad5..b0d55f46b 100644 --- a/pkg/vm/cli/cli_test.go +++ b/pkg/vm/cli/cli_test.go @@ -88,7 +88,7 @@ func (e *executor) runProg(t *testing.T, commands ...string) { }() select { case <-e.ch: - case <-time.After(2 * time.Second): + case <-time.After(4 * time.Second): require.Fail(t, "command took too long time") } }