diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/minimal_lsp.lua | 2 | ||||
-rw-r--r-- | tests/specs/plugins_load_spec.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/minimal_lsp.lua b/tests/minimal_lsp.lua index 09224f94..01e814be 100644 --- a/tests/minimal_lsp.lua +++ b/tests/minimal_lsp.lua @@ -71,7 +71,7 @@ _G.load_config = function() vim.keymap.set("n", "]d", vim.diagnostic.goto_next, opts) vim.keymap.set("n", "<space>q", vim.diagnostic.setloclist, opts) vim.keymap.set("n", "<space>li", "<cmd>LspInfo<CR>", opts) - vim.keymap.set("n", "<space>lI", "<cmd>MasonCR>", opts) + vim.keymap.set("n", "<space>lI", "<cmd>Mason<CR>", opts) end -- Add the server that troubles you here, e.g. "clangd", "pyright", "tsserver" diff --git a/tests/specs/plugins_load_spec.lua b/tests/specs/plugins_load_spec.lua index 283d5547..5cf1c2f5 100644 --- a/tests/specs/plugins_load_spec.lua +++ b/tests/specs/plugins_load_spec.lua @@ -59,7 +59,7 @@ a.describe("plugin-loader", function() _G.completed = false _G.verify_sha = function() if _G.locked_sha ~= get_current_sha(plugin.path) then - error "unmached results!" + error "unmatched results!" else _G.completed = true end |