diff options
author | Mathias Fußenegger <mfussenegger@users.noreply.github.com> | 2024-04-23 19:05:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 19:05:01 +0200 |
commit | c81b7849a0f677164c01cf84ecfb25c1f47acf21 (patch) | |
tree | 31e11059634023a90d96d409ca8a5c3240b3fdbb /test/functional/plugin/lsp_spec.lua | |
parent | 052498ed42780a76daea589d063cd8947a894673 (diff) | |
download | rneovim-c81b7849a0f677164c01cf84ecfb25c1f47acf21.tar.gz rneovim-c81b7849a0f677164c01cf84ecfb25c1f47acf21.tar.bz2 rneovim-c81b7849a0f677164c01cf84ecfb25c1f47acf21.zip |
refactor(lsp): merge subtypes and supertypes into typehierarchy (#28467)
Both methods had pretty much the same documentation and shared the
implementation.
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index 8d3e141944..0432d3fc94 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -3463,7 +3463,7 @@ describe('LSP', function() end) end) - describe('vim.lsp.buf.subtypes', function() + describe('vim.lsp.buf.typehierarchy subtypes', function() it('does nothing for an empty response', function() local qflist_count = exec_lua([=[ require'vim.lsp.handlers'['typeHierarchy/subtypes'](nil, nil, {}) @@ -3681,7 +3681,7 @@ describe('LSP', function() end) end) - describe('vim.lsp.buf.supertypes', function() + describe('vim.lsp.buf.typehierarchy supertypes', function() it('does nothing for an empty response', function() local qflist_count = exec_lua([=[ require'vim.lsp.handlers'['typeHierarchy/supertypes'](nil, nil, {}) |