diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-06-06 02:06:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-06 02:06:40 +0200 |
commit | 39f802bef4fa211349bc1489770645608466a378 (patch) | |
tree | e49ecedef310360e000df4066d635ef4b9a121b9 /test/functional/lua/vim_spec.lua | |
parent | 33dafc4f0f21f763dac8f6bdbd27117666f908c5 (diff) | |
parent | d14298a1f076d9681ba35c2fbb53af812e4d15f6 (diff) | |
download | rneovim-39f802bef4fa211349bc1489770645608466a378.tar.gz rneovim-39f802bef4fa211349bc1489770645608466a378.tar.bz2 rneovim-39f802bef4fa211349bc1489770645608466a378.zip |
Merge pull request #12416 from teto/openbsd_fix
ci: bump openbsd image
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r-- | test/functional/lua/vim_spec.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua index aa0b3d822b..9b2697b3c2 100644 --- a/test/functional/lua/vim_spec.lua +++ b/test/functional/lua/vim_spec.lua @@ -1167,14 +1167,6 @@ describe('lua stdlib', function() ]]) end) - it('should call callbacks more times with small `interval`', function() - eq(true, exec_lua [[ - vim.g.wait_count = 0 - vim.wait(50, function() vim.g.wait_count = vim.g.wait_count + 1 end, 5) - return vim.g.wait_count > 5 - ]]) - end) - it('should play nice with `not` when fails', function() eq(true, exec_lua [[ if not vim.wait(50, function() end) then |