diff src/testdir/test_terminal.vim @ 13596:18c10f37ac5e v8.0.1670

patch 8.0.1670: terminal window tests are still a bit flaky commit https://github.com/vim/vim/commit/b6ed74fef8e088128c45928ee7d02458b2882c1e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 7 10:42:14 2018 +0200 patch 8.0.1670: terminal window tests are still a bit flaky Problem: Terminal window tests are still a bit flaky. Solution: Increase the waiting time for the buffer to be created.
author Christian Brabandt <cb@256bit.org>
date Sat, 07 Apr 2018 10:45:05 +0200
parents 4df23d9bad47
children 33a2dec07a0f
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -1061,7 +1061,7 @@ func Api_drop_common(options)
 	\ "set t_ts=",
 	\ ], 'Xscript')
   let buf = RunVimInTerminal('-S Xscript', {})
-  call WaitFor({-> bufnr('Xtextfile') > 0})
+  call WaitFor({-> bufnr('Xtextfile') > 0}, 2000)
   call assert_equal('Xtextfile', expand('%:t'))
   call assert_true(winnr('$') >= 3)
   return buf