diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-02 11:28:12 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-02 11:28:12 -0700 |
| commit | d3c17d50d828d7c983f58fc37590126091316930 (patch) | |
| tree | d1eca8e897b9c5f7901b1990b66783f5f74af03e /src/nvim/testdir/shared.vim | |
| parent | cb339ca0fb27976daca1909557d2862be9629d0e (diff) | |
| parent | 4a608180714eb1ea7bfd07a083b314cc3324f5b7 (diff) | |
| download | rneovim-d3c17d50d828d7c983f58fc37590126091316930.tar.gz rneovim-d3c17d50d828d7c983f58fc37590126091316930.tar.bz2 rneovim-d3c17d50d828d7c983f58fc37590126091316930.zip | |
Merge #10918 from janlazo/vim-8.0.1697
vim-patch:8.0.{1697,1729}
Diffstat (limited to 'src/nvim/testdir/shared.vim')
| -rw-r--r-- | src/nvim/testdir/shared.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/shared.vim b/src/nvim/testdir/shared.vim index bcd6d021a0..df512e2e3f 100644 --- a/src/nvim/testdir/shared.vim +++ b/src/nvim/testdir/shared.vim @@ -133,7 +133,7 @@ func s:kill_server(cmd) endif endfunc -" Wait for up to a second for "expr" to become true. "expr" can be a +" Wait for up to five seconds for "expr" to become true. "expr" can be a " stringified expression to evaluate, or a funcref without arguments. " " A second argument can be used to specify a different timeout in msec. @@ -141,7 +141,7 @@ endfunc " Return time slept in milliseconds. With the +reltime feature this can be " more than the actual waiting time. Without +reltime it can also be less. func WaitFor(expr, ...) - let timeout = get(a:000, 0, 1000) + let timeout = get(a:000, 0, 5000) " using reltime() is more accurate, but not always available if has('reltime') let start = reltime() |