diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-04-09 09:53:23 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-04-09 10:24:49 +0200 |
commit | 102720be944cf575dbf7790e670acf2fafbaf15f (patch) | |
tree | 92512ab1f4d5359a0e0e4db4ccd51a8b8c21fc3e | |
parent | 41521658b1dca302a4c7125753694b59a317c0f9 (diff) | |
download | rneovim-102720be944cf575dbf7790e670acf2fafbaf15f.tar.gz rneovim-102720be944cf575dbf7790e670acf2fafbaf15f.tar.bz2 rneovim-102720be944cf575dbf7790e670acf2fafbaf15f.zip |
vim-patch:9.1.0281: CI: fails Test_compiler_completion
Problem: CI: fails Test_compiler_completion
Solution: Add pandoc compiler
https://github.com/vim/vim/commit/d33cb3f65e112bdb2d57139e9a308b1a9c8ffcc2
Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r-- | test/old/testdir/test_compiler.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_compiler.vim b/test/old/testdir/test_compiler.vim index 0b22bafabb..11cfd7f47f 100644 --- a/test/old/testdir/test_compiler.vim +++ b/test/old/testdir/test_compiler.vim @@ -62,10 +62,10 @@ func Test_compiler_completion() call assert_match('^"compiler ' .. clist .. '$', @:) call feedkeys(":compiler p\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_match('"compiler pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:) + call assert_match('"compiler pandoc pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:) call feedkeys(":compiler! p\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_match('"compiler! pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:) + call assert_match('"compiler! pandoc pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:) endfunc func Test_compiler_error() |