diff --git a/tests/integration/cli/exec.go b/tests/integration/cli/exec.go index 6b74fc0ee..3b34fd0a7 100644 --- a/tests/integration/cli/exec.go +++ b/tests/integration/cli/exec.go @@ -2,6 +2,7 @@ package cli import ( "os/exec" + "time" "cosmossdk.io/errors" ) @@ -13,5 +14,7 @@ func Exec(args ...string) (string, error) { return "", errors.Wrap(err, string(out)) } + time.Sleep(2 * time.Second) + return string(out), err }