diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-05-18 16:27:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 16:27:47 +0200 |
commit | 826b95203ac9c8decf02e332fbb55cf4ebf73aef (patch) | |
tree | 222fd6410b7010759575c54d9317c5df0ac47738 /test/functional/lua/fs_spec.lua | |
parent | c40872acbddb61fd084203af60a86c7ec404d716 (diff) | |
download | rneovim-826b95203ac9c8decf02e332fbb55cf4ebf73aef.tar.gz rneovim-826b95203ac9c8decf02e332fbb55cf4ebf73aef.tar.bz2 rneovim-826b95203ac9c8decf02e332fbb55cf4ebf73aef.zip |
build: bundle uncrustify
Uncrustify is sensitive to version changes, which causes friction for
contributors that doesn't have that exact version. It's also simpler to
download and install the correct version than to have bespoke version
checking.
Diffstat (limited to 'test/functional/lua/fs_spec.lua')
-rw-r--r-- | test/functional/lua/fs_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/fs_spec.lua b/test/functional/lua/fs_spec.lua index 2fcbc9450f..f646e676c6 100644 --- a/test/functional/lua/fs_spec.lua +++ b/test/functional/lua/fs_spec.lua @@ -223,7 +223,7 @@ describe('vim.fs', function() describe('find()', function() it('works', function() - eq({test_build_dir}, exec_lua([[ + eq({test_build_dir .. "/build"}, exec_lua([[ local dir = ... return vim.fs.find('build', { path = dir, upward = true, type = 'directory' }) ]], nvim_dir)) @@ -239,7 +239,7 @@ describe('vim.fs', function() end) it('accepts predicate as names', function() - eq({test_build_dir}, exec_lua([[ + eq({test_build_dir .. "/build"}, exec_lua([[ local dir = ... local opts = { path = dir, upward = true, type = 'directory' } return vim.fs.find(function(x) return x == 'build' end, opts) |