diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-07-31 16:49:25 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-07-31 16:58:10 -0400 |
commit | 5cead86975f89bf0e1765afcd10ded64d5b51346 (patch) | |
tree | 52ef2f2062ff6abf2c3ca8b9529adb54ed4b5109 /test/functional/plugin/lsp_spec.lua | |
parent | e4fedf5156995defc547d92cfe155febeed89872 (diff) | |
download | rneovim-5cead86975f89bf0e1765afcd10ded64d5b51346.tar.gz rneovim-5cead86975f89bf0e1765afcd10ded64d5b51346.tar.bz2 rneovim-5cead86975f89bf0e1765afcd10ded64d5b51346.zip |
fixup! vim-patch:8.2.3019: location list only has the start position.
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index e5533af73b..b77a285379 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -2026,7 +2026,9 @@ describe('LSP', function() local expected = { { bufnr = 2, col = 5, + end_col = 0, lnum = 4, + end_lnum = 0, module = "", nr = 0, pattern = "", @@ -2098,7 +2100,9 @@ describe('LSP', function() local expected = { { bufnr = 2, col = 5, + end_col = 0, lnum = 4, + end_lnum = 0, module = "", nr = 0, pattern = "", |