aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2021-10-16 17:45:59 +0200
committerChristian Clason <c.clason@uni-graz.at>2021-10-16 19:17:28 +0200
commitfbc5b7b090221eb5344dd0d09b13f24fdedf2630 (patch)
treee8e7bb3f482fd5015920466d639f6313f2c18e85
parent0ba77f2f31c9de42f1e7a8435e6322d3f0a04fa5 (diff)
downloadrneovim-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.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 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)