diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-10-16 13:17:10 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2024-10-17 12:52:45 +0100 |
commit | acbc6a7f91d15fe5f59df08227d196156fafedb4 (patch) | |
tree | 4e729aa999d9dea4dcba583cc17fd74c0f2edca8 /test/functional/plugin/lsp_spec.lua | |
parent | ff1d7d42995931d17395223cec6fb2031a870d15 (diff) | |
download | rneovim-acbc6a7f91d15fe5f59df08227d196156fafedb4.tar.gz rneovim-acbc6a7f91d15fe5f59df08227d196156fafedb4.tar.bz2 rneovim-acbc6a7f91d15fe5f59df08227d196156fafedb4.zip |
fix(lsp.util): inconsistent handling of offset_encoding
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-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 5309e1967c..6cd433b975 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -2586,7 +2586,7 @@ describe('LSP', function() }, }, } - eq(false, pcall(exec_lua, 'vim.lsp.util.apply_workspace_edit(...)', edit)) + eq(false, pcall(exec_lua, 'vim.lsp.util.apply_workspace_edit(...)', edit, 'utf-16')) eq(false, vim.uv.fs_stat(tmpfile) ~= nil) end) end) |