diff src/testdir/test_timers.vim @ 9935:9772b04372f4 v7.4.2241

commit https://github.com/vim/vim/commit/973365dcc40a41e6b72ece56f15cebfee69b1329 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 22 22:02:56 2016 +0200 patch 7.4.2241 Problem: Timer test sometimes fails. Solution: Increase the maximum time for repeating timer.
author Christian Brabandt <cb@256bit.org>
date Mon, 22 Aug 2016 22:15:06 +0200
parents 7f38e72a9d65
children 88f9812ac47d
line wrap: on
line diff
--- a/src/testdir/test_timers.vim
+++ b/src/testdir/test_timers.vim
@@ -32,7 +32,7 @@ func Test_repeat_three()
   let slept = WaitFor('g:val == 3')
   call assert_equal(3, g:val)
   if has('reltime')
-    call assert_inrange(150, 200, slept)
+    call assert_inrange(150, 250, slept)
   else
     call assert_inrange(80, 200, slept)
   endif