diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-03-16 10:14:13 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-03-16 10:40:50 -0400 |
commit | 3bad76008e1c98724eca7d986a6340eff1de8193 (patch) | |
tree | b54aed69b7cf43c5753d28682b3c8382307415fa | |
parent | 2ea6d3ab974aad74cdcbe12a15a7a65956cc6e33 (diff) | |
download | rneovim-3bad76008e1c98724eca7d986a6340eff1de8193.tar.gz rneovim-3bad76008e1c98724eca7d986a6340eff1de8193.tar.bz2 rneovim-3bad76008e1c98724eca7d986a6340eff1de8193.zip |
oldtests: wait 200ms on mac for timer test
-rw-r--r-- | src/nvim/testdir/test_timers.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_timers.vim b/src/nvim/testdir/test_timers.vim index 62ddad5dce..5a0939a6a1 100644 --- a/src/nvim/testdir/test_timers.vim +++ b/src/nvim/testdir/test_timers.vim @@ -47,6 +47,9 @@ func Test_repeat_many() call timer_stopall() let g:val = 0 let timer = timer_start(50, 'MyHandler', {'repeat': -1}) + if has('mac') + sleep 200m + endif sleep 200m call timer_stop(timer) call assert_inrange((has('mac') ? 1 : 2), 4, g:val) |