diff options
author | kylo252 <[email protected]> | 2022-10-17 17:29:15 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-10-17 17:29:15 +0200 |
commit | 4ef07315003f723bb8e97d5a91b2bde3773ec1b8 (patch) | |
tree | e9889a492f76e3f9573228343aaba647dfd48136 /tests | |
parent | e4a5fe97abe500bbbe78fb137d57a59f558da05a (diff) | |
parent | 6f6cbc394d2a7e64964b6067a2f42d2e6a07824e (diff) |
Merge remote-tracking branch 'origin/rolling'
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 |