aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-09-01 11:27:46 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-09-01 11:27:51 -0400
commit8e1adedb263f0aa8ecf7e894b3e3697cad3e543d (patch)
treec6e958ea6208376ee62b4bedd66210f4af1108af
parente29b89ca54e20b1f3430b43b1c57bd72ccadf954 (diff)
downloadrneovim-8e1adedb263f0aa8ecf7e894b3e3697cad3e543d.tar.gz
rneovim-8e1adedb263f0aa8ecf7e894b3e3697cad3e543d.tar.bz2
rneovim-8e1adedb263f0aa8ecf7e894b3e3697cad3e543d.zip
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
-rw-r--r--src/nvim/testdir/test_popup.vim2
1 files changed, 1 insertions, 1 deletions
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\<esc>")
- call term_wait(g:buf, 200)
+ call term_wait(g:buf, 500)
call term_sendkeys(g:buf, "Gi\<c-x>")
call term_sendkeys(g:buf, "\<c-v>")
call term_wait(g:buf, 100)