aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/help_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2022-10-13 21:36:25 -0400
committerGitHub <noreply@github.com>2022-10-13 18:36:25 -0700
commitd339b4aad7461937e1e03ac0836b2eb1354ff442 (patch)
treebba017c37cbab211665b8021cdd7ecf33cfb00a7 /test/functional/lua/help_spec.lua
parent0578c67767a9cbaeaab167092a7bdb389f556ee4 (diff)
downloadrneovim-d339b4aad7461937e1e03ac0836b2eb1354ff442.tar.gz
rneovim-d339b4aad7461937e1e03ac0836b2eb1354ff442.tar.bz2
rneovim-d339b4aad7461937e1e03ac0836b2eb1354ff442.zip
build(deps): bump vimdoc (help) parser to v1.2.1 #20642
Diffstat (limited to 'test/functional/lua/help_spec.lua')
-rw-r--r--test/functional/lua/help_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/help_spec.lua b/test/functional/lua/help_spec.lua
index 251275b5cc..242897336d 100644
--- a/test/functional/lua/help_spec.lua
+++ b/test/functional/lua/help_spec.lua
@@ -21,7 +21,7 @@ describe(':help docs', function()
ok(rv.helpfiles > 100, '>100 :help files', rv.helpfiles)
-- Check that parse errors did not increase wildly.
-- TODO: Fix all parse errors in :help files.
- ok(rv.err_count < 150, '<150 parse errors', rv.err_count)
+ ok(rv.err_count < 100, '<100 parse errors', rv.err_count)
eq({}, rv.invalid_links, exec_lua([[return 'found invalid :help tag links:\n'..vim.inspect(...)]], rv.invalid_links))
end)
@@ -43,7 +43,7 @@ describe(':help docs', function()
tmpdir
)
eq(4, #rv.helpfiles)
- ok(rv.err_count <= 1, '<=1 parse errors', rv.err_count)
+ ok(rv.err_count == 0, '0 parse errors', rv.err_count)
eq({}, rv.invalid_links, exec_lua([[return 'found invalid :help tag links:\n'..vim.inspect(...)]], rv.invalid_links))
end)
end)