diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-02 08:19:01 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-02 08:19:01 -0400 |
commit | 9cd75ce73e816bece4b003bf4a9b1fbd7bd68d9e (patch) | |
tree | 6442cb1ddff0f439a78db55c13d356afaff996dd | |
parent | 245b1ad7fa7c77c9dba9929c7def534cddad3512 (diff) | |
download | rneovim-9cd75ce73e816bece4b003bf4a9b1fbd7bd68d9e.tar.gz rneovim-9cd75ce73e816bece4b003bf4a9b1fbd7bd68d9e.tar.bz2 rneovim-9cd75ce73e816bece4b003bf4a9b1fbd7bd68d9e.zip |
oldtests: add conceal check for patch 8.0.0562
-rw-r--r-- | src/nvim/testdir/test_syntax.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_syntax.vim b/src/nvim/testdir/test_syntax.vim index 7f484aa72f..409598d439 100644 --- a/src/nvim/testdir/test_syntax.vim +++ b/src/nvim/testdir/test_syntax.vim @@ -304,7 +304,9 @@ endfunc func Test_invalid_arg() call assert_fails('syntax case asdf', 'E390:') - call assert_fails('syntax conceal asdf', 'E390:') + if has('conceal') + call assert_fails('syntax conceal asdf', 'E390:') + endif call assert_fails('syntax spell asdf', 'E390:') endfunc |