1
0
forked from aniani/vim

patch 8.1.1860: map timeout test is flaky

Problem:    Map timeout test is flaky.
Solution:   Add test to list of flaky tests.  Increase timeout.
This commit is contained in:
Bram Moolenaar
2019-08-16 21:47:27 +02:00
parent 427dddf014
commit ea94c85516
3 changed files with 4 additions and 1 deletions

View File

@@ -298,7 +298,7 @@ func Test_map_timeout_with_timer_interrupt()
let g:val = 0
nnoremap \12 :let g:val = 1<CR>
nnoremap \123 :let g:val = 2<CR>
set timeout timeoutlen=100
set timeout timeoutlen=200
func ExitCb(job, status)
let g:timer = timer_start(1, {-> feedkeys("3\<Esc>", 't')})