diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-10 21:43:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-10 21:43:26 +0200 |
commit | b377457e693210d1b0c0bbac7e04671fc98f038b (patch) | |
tree | 8846ddb37292d5613a4c42c36065925b7131edb6 /src/testdir/screendump.vim | |
parent | 1acdb3f30104576c36f83d422fb67a805b0ce58a (diff) | |
download | vim-git-b377457e693210d1b0c0bbac7e04671fc98f038b.tar.gz |
patch 8.0.1694: terminal API test is a bit flakyv8.0.1694
Problem: Terminal API test is a bit flaky.
Solution: Wait longer for Vim to stop.
Diffstat (limited to 'src/testdir/screendump.vim')
-rw-r--r-- | src/testdir/screendump.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim index 764345a98..e1e660b37 100644 --- a/src/testdir/screendump.vim +++ b/src/testdir/screendump.vim @@ -70,7 +70,7 @@ endfunc func StopVimInTerminal(buf) call assert_equal("running", term_getstatus(a:buf)) call term_sendkeys(a:buf, "\<Esc>\<Esc>:qa!\<cr>") - call WaitFor('term_getstatus(' . a:buf . ') == "finished"') + call WaitFor('term_getstatus(' . a:buf . ') == "finished"', 3000) only! endfunc |