# HG changeset patch # User Christian Brabandt # Date 1470690006 -7200 # Node ID a38dc0c523b8bd06f65f0a7a2302195cffabca42 # Parent b360286fcdf25b79b04eab6fcc3d711d4c4d417d commit https://github.com/vim/vim/commit/36d1c0fef4039fd4c91643c8ac107e78115158c9 Author: Bram Moolenaar Date: Mon Aug 8 22:46:14 2016 +0200 patch 7.4.2186 Problem: Timers test is flaky. Solution: Relax the sleep time check. diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -27,7 +27,7 @@ func Test_repeat_three() let timer = timer_start(50, 'MyHandler', {'repeat': 3}) let slept = WaitFor('g:val == 3') call assert_equal(3, g:val) - call assert_inrange(100, 250, slept) + call assert_inrange(80, 200, slept) endfunc func Test_repeat_many() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2186, +/**/ 2185, /**/ 2184,