diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-11-03 13:36:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 13:36:25 +0100 |
commit | a766695c8b2c0b53b0b9f9f17bcff117183b21f9 (patch) | |
tree | d92dde6246c41e43432ca169e3d1ca3f4af290b7 /test/functional/lua/treesitter_spec.lua | |
parent | a061d53e18168130aad537a9e8012390834ff8c2 (diff) | |
parent | 8e73cf67314095fe7240be5e57232ea3d20aac94 (diff) | |
download | rneovim-a766695c8b2c0b53b0b9f9f17bcff117183b21f9.tar.gz rneovim-a766695c8b2c0b53b0b9f9f17bcff117183b21f9.tar.bz2 rneovim-a766695c8b2c0b53b0b9f9f17bcff117183b21f9.zip |
Merge pull request #12931 from vigoux/treesitter-bundled
bundle: move tree-sitter as a bundled dep
Diffstat (limited to 'test/functional/lua/treesitter_spec.lua')
-rw-r--r-- | test/functional/lua/treesitter_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/treesitter_spec.lua b/test/functional/lua/treesitter_spec.lua index 9eb5c8b1dd..4c1083c386 100644 --- a/test/functional/lua/treesitter_spec.lua +++ b/test/functional/lua/treesitter_spec.lua @@ -41,7 +41,7 @@ describe('treesitter API with C parser', function() end it('parses buffer', function() - if not check_parser() then return end + if helpers.pending_win32(pending) or not check_parser() then return end insert([[ int main() { |