File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if has('timers')
1616 let g: triggered = 0
1717 au CursorHoldI * let g: triggered += 1
1818 set updatetime = 20
19- call timer_start (100 , ' ExitInsertMode' )
19+ call timer_start (200 , ' ExitInsertMode' )
2020 call feedkeys (' a' , ' x!' )
2121 call assert_equal (1 , g: triggered )
2222 au ! CursorHoldI
@@ -26,7 +26,7 @@ if has('timers')
2626 let g: triggered = 0
2727 au CursorHoldI * let g: triggered += 1
2828 set updatetime = 20
29- call timer_start (100 , ' ExitInsertMode' )
29+ call timer_start (200 , ' ExitInsertMode' )
3030 " CursorHoldI does not trigger after CTRL-X
3131 call feedkeys (" a\<C-X> " , ' x!' )
3232 call assert_equal (0 , g: triggered )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function! Test_lambda_with_timer()
3939 call timer_stop (s: timer_id )
4040 call assert_true (m > 1 )
4141 call assert_true (s: n > m + 1 )
42- call assert_true (s: n < 9 )
42+ call assert_true (s: n < 10 )
4343endfunction
4444
4545function ! Test_lambda_with_partial ()
You can’t perform that action at this time.
0 commit comments