diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-11-30 12:08:46 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-30 13:40:08 +0100 |
commit | 9d174a7dace3004a069f474ed9c8ba4f3b97c5d8 (patch) | |
tree | af831f22f553d19f7af7ad01b0176e936b231d93 /test/old/testdir/test_compiler.vim | |
parent | 4426a326e2441326e280a0478f83128e09305806 (diff) | |
download | rneovim-9d174a7dace3004a069f474ed9c8ba4f3b97c5d8.tar.gz rneovim-9d174a7dace3004a069f474ed9c8ba4f3b97c5d8.tar.bz2 rneovim-9d174a7dace3004a069f474ed9c8ba4f3b97c5d8.zip |
vim-patch:9.1.0898: runtime(compiler): pytest compiler not included
Problem: runtime(compiler): pytest compiler not included
Solution: include pytest compiler, update the compiler completion test
(Konfekt)
closes: vim/vim#16130
https://github.com/vim/vim/commit/3c2596a9e967910143d41fbb9615614ab36d43a7
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'test/old/testdir/test_compiler.vim')
-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 6b195b5efa..3ad6b365de 100644 --- a/test/old/testdir/test_compiler.vim +++ b/test/old/testdir/test_compiler.vim @@ -65,10 +65,10 @@ func Test_compiler_completion() call assert_match('^"compiler ' .. clist .. '$', @:) call feedkeys(":compiler p\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_match('"compiler pandoc pbx perl\( p[a-z_]\+\)\+ pylint pyunit', @:) + call assert_match('"compiler pandoc pbx perl\( p[a-z_]\+\)\+ pyunit', @:) call feedkeys(":compiler! p\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_match('"compiler! pandoc pbx perl\( p[a-z_]\+\)\+ pylint pyunit', @:) + call assert_match('"compiler! pandoc pbx perl\( p[a-z_]\+\)\+ pyunit', @:) endfunc func Test_compiler_error() |