aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEisuke Kawashima <e.kawaschima+github@gmail.com>2025-03-28 08:19:54 +0900
committerGitHub <noreply@github.com>2025-03-27 16:19:54 -0700
commit07f048a8d764b075cb73dca4002b4743841faaa9 (patch)
treeb3d82ebe955a948831a3ce1bf5e85345bb9f55ac /test
parente1f1386d5e5db1d10e42f7779c1af1cce2690c78 (diff)
downloadrneovim-07f048a8d764b075cb73dca4002b4743841faaa9.tar.gz
rneovim-07f048a8d764b075cb73dca4002b4743841faaa9.tar.bz2
rneovim-07f048a8d764b075cb73dca4002b4743841faaa9.zip
fix(health): message should mention "vim.provider" #33095
Diffstat (limited to 'test')
-rw-r--r--test/functional/plugin/health_spec.lua4
1 files changed, 2 insertions, 2 deletions
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)