diff options
author | Jose Alvarez <j.alvarez11@icloud.com> | 2021-09-06 04:48:54 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-05 12:48:54 -0700 |
commit | 3f526feebfe6d7bf71380a24639a3dd908f77ff6 (patch) | |
tree | c467b30e30d41eb2174a49526d6c80f0f18554ce /test | |
parent | 23fe6dba138859c1c22850b9ce76219141f546a0 (diff) | |
download | rneovim-3f526feebfe6d7bf71380a24639a3dd908f77ff6.tar.gz rneovim-3f526feebfe6d7bf71380a24639a3dd908f77ff6.tar.bz2 rneovim-3f526feebfe6d7bf71380a24639a3dd908f77ff6.zip |
fix(lsp): update workspace/applyEdit handler signature (#15573)
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index 16fe75d359..1d790cd470 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -1226,7 +1226,7 @@ describe('LSP', function() label = nil; edit = {}; } - return vim.lsp.handlers['workspace/applyEdit'](nil, nil, apply_edit) + return vim.lsp.handlers['workspace/applyEdit'](nil, apply_edit) ]]) end) end) |