diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-10-16 17:45:59 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2021-10-16 19:17:28 +0200 |
commit | fbc5b7b090221eb5344dd0d09b13f24fdedf2630 (patch) | |
tree | e8e7bb3f482fd5015920466d639f6313f2c18e85 | |
parent | 0ba77f2f31c9de42f1e7a8435e6322d3f0a04fa5 (diff) | |
download | rneovim-fbc5b7b090221eb5344dd0d09b13f24fdedf2630.tar.gz rneovim-fbc5b7b090221eb5344dd0d09b13f24fdedf2630.tar.bz2 rneovim-fbc5b7b090221eb5344dd0d09b13f24fdedf2630.zip |
chore(test): adapt healthcheck test to new css syntax
The runtime file update
https://github.com/vim/vim/commit/2286304cdbba53ceb52b3ba2ba4a521b0a2f8d0f
added a `syn keyword` for `css`, which affects (via `html` and
`markdown` syntax files) the highlighting of `:checkhealth` output
(before, `ERROR:` was highlighted with `healthError`; now the colon is
no longer included).
-rw-r--r-- | test/functional/plugin/health_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua index 45fcf945f4..b84e9d1533 100644 --- a/test/functional/plugin/health_spec.lua +++ b/test/functional/plugin/health_spec.lua @@ -208,12 +208,12 @@ describe('health.vim', function() ^ | {Heading:foo: } | {Bar:========================================================================}| - {Bullet: -} {Error:ERROR:} No healthcheck found for "foo" plugin. | + {Bullet: -} {Error:ERROR}: No healthcheck found for "foo" plugin. | | {Heading:success1: health#success1#check} | {Bar:========================================================================}| {Heading2:##}{Heading: report 1} | - {Bullet: -} {Ok:OK:} everything is fine | + {Bullet: -} {Ok:OK}: everything is fine | | ]]} end) |