From aba340f863637523732f67b950239ec0f4175c38 Mon Sep 17 00:00:00 2001 From: atheesh Date: Thu, 22 Feb 2024 10:08:17 +0530 Subject: [PATCH] reduce timer --- tests/integration/cli/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/cli/exec.go b/tests/integration/cli/exec.go index 3b34fd0a7..363c7b660 100644 --- a/tests/integration/cli/exec.go +++ b/tests/integration/cli/exec.go @@ -14,7 +14,7 @@ func Exec(args ...string) (string, error) { return "", errors.Wrap(err, string(out)) } - time.Sleep(2 * time.Second) + time.Sleep(10 * time.Millisecond) return string(out), err }