aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorJose Alvarez <j.alvarez11@icloud.com>2021-09-06 04:48:54 +0900
committerJustin M. Keyes <justinkz@gmail.com>2021-09-26 10:25:17 -0700
commita6eab6e25e57c10baabc4c061fe6a9339614c8f4 (patch)
treef58761859e5a74b61da8b26e2f0ccd2b250542c4 /test/functional
parentcd8f6c5fb7858d8981fdfb2067bddb3eb86c13d0 (diff)
downloadrneovim-a6eab6e25e57c10baabc4c061fe6a9339614c8f4.tar.gz
rneovim-a6eab6e25e57c10baabc4c061fe6a9339614c8f4.tar.bz2
rneovim-a6eab6e25e57c10baabc4c061fe6a9339614c8f4.zip
fix(lsp): update workspace/applyEdit handler signature (#15573)
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/plugin/lsp_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua
index da96ff6a5f..a9b6b5d9de 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -1224,7 +1224,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)