From 07f048a8d764b075cb73dca4002b4743841faaa9 Mon Sep 17 00:00:00 2001 From: Eisuke Kawashima Date: Fri, 28 Mar 2025 08:19:54 +0900 Subject: fix(health): message should mention "vim.provider" #33095 --- test/functional/plugin/health_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua index 3632774bff..c9ec382d93 100644 --- a/test/functional/plugin/health_spec.lua +++ b/test/functional/plugin/health_spec.lua @@ -245,13 +245,13 @@ describe('vim.health', function() end) end) -describe(':checkhealth provider', function() +describe(':checkhealth vim.provider', function() it("works correctly with a wrongly configured 'shell'", function() clear() command([[set shell=echo\ WRONG!!!]]) command('let g:loaded_perl_provider = 0') command('let g:loaded_python3_provider = 0') - command('checkhealth provider') + command('checkhealth vim.provider') eq(nil, string.match(curbuf_contents(), 'WRONG!!!')) end) end) -- cgit