aboutsummaryrefslogtreecommitdiff
path: root/test/functional/plugin/lsp_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2020-11-04 10:41:22 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2020-11-05 14:46:41 +0100
commit1b0e4a5906d3c9fcb4290f943c7b048b3c35353b (patch)
tree9a9e48bae3de8a7a68c3fb911fd6f3f6f3ec7948 /test/functional/plugin/lsp_spec.lua
parentaaaad0f5934460dfaf7ef7a29dcf38060c641b43 (diff)
downloadrneovim-1b0e4a5906d3c9fcb4290f943c7b048b3c35353b.tar.gz
rneovim-1b0e4a5906d3c9fcb4290f943c7b048b3c35353b.tar.bz2
rneovim-1b0e4a5906d3c9fcb4290f943c7b048b3c35353b.zip
lua: make vim.inspect available early so it can be used for path debugging
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r--test/functional/plugin/lsp_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua
index 73f3fe5d0c..00093f71d4 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -820,12 +820,12 @@ describe('LSP', function()
eq(dedent([[
Error executing lua: .../lsp.lua:0: cmd: expected list, got nvim
stack traceback:
- .../lsp.lua:0: in function .../lsp.lua:0>]]),
+ .../lsp.lua:0: in function <.../lsp.lua:0>]]),
pcall_err(_cmd_parts, 'nvim'))
eq(dedent([[
Error executing lua: .../lsp.lua:0: cmd argument: expected string, got number
stack traceback:
- .../lsp.lua:0: in function .../lsp.lua:0>]]),
+ .../lsp.lua:0: in function <.../lsp.lua:0>]]),
pcall_err(_cmd_parts, {'nvim', 1}))
end)
end)