diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-10-04 11:16:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 11:16:07 -0400 |
commit | 179d2d67d802a9f10ffbc69328b7f2a21dfbde3a (patch) | |
tree | 97bf3184a3bb1e116dba64dc08425f3914c45acd /test/functional/lua/help_spec.lua | |
parent | 28fbdd338586e066aa3e540333513b04c54361bc (diff) | |
parent | 03bc23de36c85b453bba6ac1338c4d51ea3508b1 (diff) | |
download | rneovim-179d2d67d802a9f10ffbc69328b7f2a21dfbde3a.tar.gz rneovim-179d2d67d802a9f10ffbc69328b7f2a21dfbde3a.tar.bz2 rneovim-179d2d67d802a9f10ffbc69328b7f2a21dfbde3a.zip |
Merge #20412 feat(docs): HTML generator
Diffstat (limited to 'test/functional/lua/help_spec.lua')
-rw-r--r-- | test/functional/lua/help_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/help_spec.lua b/test/functional/lua/help_spec.lua index a00aaea9d2..6743648819 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 < 250, '<250 parse errors', rv.err_count) + ok(rv.err_count < 280, '<280 parse errors', rv.err_count) eq({}, rv.invalid_links, exec_lua([[return 'found invalid :help tag links:\n'..vim.inspect(...)]], rv.invalid_links)) end) |