diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-08 22:46:14 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-08 22:46:14 +0200 |
commit | 36d1c0fef4039fd4c91643c8ac107e78115158c9 (patch) | |
tree | 575707a32f2e124e9cc26bcf6b145b4eee769b47 /src/testdir | |
parent | 71dd9744cf3842cd45295010d2e5692da1651537 (diff) | |
download | vim-36d1c0fef4039fd4c91643c8ac107e78115158c9.zip |
patch 7.4.2186
Problem: Timers test is flaky.
Solution: Relax the sleep time check.
Diffstat (limited to 'src/testdir')
-rw-r--r-- | src/testdir/test_timers.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim index fb35f61ff..f334c1746 100644 --- 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() |