From 8e1adedb263f0aa8ecf7e894b3e3697cad3e543d Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 1 Sep 2019 11:27:46 -0400 Subject: vim-patch:8.0.1241: popup test is flaky Problem: Popup test is flaky. (James McCoy) Solution: Increase the wait time. (Dominique Pelle) https://github.com/vim/vim/commit/89c394faca40d2f5d57705432a433173b295bf73 --- src/nvim/testdir/test_popup.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/testdir/test_popup.vim b/src/nvim/testdir/test_popup.vim index 0027a0a52e..e6594d4581 100644 --- a/src/nvim/testdir/test_popup.vim +++ b/src/nvim/testdir/test_popup.vim @@ -671,7 +671,7 @@ func Test_popup_and_window_resize() endif let g:buf = term_start([GetVimProg(), '--clean', '-c', 'set noswapfile'], {'term_rows': h / 3}) call term_sendkeys(g:buf, (h / 3 - 1)."o\") - call term_wait(g:buf, 200) + call term_wait(g:buf, 500) call term_sendkeys(g:buf, "Gi\") call term_sendkeys(g:buf, "\") call term_wait(g:buf, 100) -- cgit