aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core/startup_spec.lua
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-04-12 00:01:34 +0200
committerGitHub <noreply@github.com>2023-04-12 00:01:34 +0200
commit2b35de386ee8854e1012feb4a6cc53b099220677 (patch)
treeea684ebd977f05435a8af2e1ba665998095493ee /test/functional/core/startup_spec.lua
parentf4136c9d42f79c0f2fe3ce6fdc22b1544593692a (diff)
downloadrneovim-2b35de386ee8854e1012feb4a6cc53b099220677.tar.gz
rneovim-2b35de386ee8854e1012feb4a6cc53b099220677.tar.bz2
rneovim-2b35de386ee8854e1012feb4a6cc53b099220677.zip
refactor: remove :CheckHealth
Using :CheckHealth invokes an error, and many of the features from :checkhealth doesn't even work such as calling only a specific check. Users should use :checkhealth instead.
Diffstat (limited to 'test/functional/core/startup_spec.lua')
-rw-r--r--test/functional/core/startup_spec.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/core/startup_spec.lua b/test/functional/core/startup_spec.lua
index cc94623df3..2a9d3edb33 100644
--- a/test/functional/core/startup_spec.lua
+++ b/test/functional/core/startup_spec.lua
@@ -402,8 +402,6 @@ describe('startup', function()
local line1 = string.match(out, '^.-\n')
-- updatecount=0 means swapfile was disabled.
eq(" swapfile updatecount=0 shadafile=\n", line1)
- -- Standard plugins were loaded, but not user config.
- eq('health.vim', string.match(out, 'health.vim'))
eq(nil, string.match(out, 'init.vim'))
end
end)