diff options
-rw-r--r-- | .builds/openbsd.yml | 10 | ||||
-rw-r--r-- | test/functional/lua/vim_spec.lua | 8 |
2 files changed, 5 insertions, 13 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index ed2962998c..5fa6556066 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -1,17 +1,17 @@ # sourcehut CI: https://builds.sr.ht/~jmk/neovim -image: openbsd/6.5 +image: openbsd/6.7 packages: - autoconf-2.69p2 - automake-1.15.1 - cmake -- gettext-0.19.8.1p3 -- gettext-tools-0.19.8.1 +- gettext-runtime-0.20.1p1 +- gettext-tools-0.20.1p3 - gmake - libtool -- ninja-1.8.2p0 -- unzip-6.0p11 +- ninja-1.10.0 +- unzip-6.0p13 sources: - https://github.com/neovim/neovim 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 |