diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-03 21:09:26 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-03 21:09:26 -0400 |
| commit | 0dfb4e2765c833557eb78ebee029e9b6a8c8bd26 (patch) | |
| tree | d4f586c6a1ac804856a367b58f0c05c7dbf0c04f /src/nvim/testdir | |
| parent | 804ea22944146a6607859dbfcf35d24946b065e2 (diff) | |
| parent | 53cceda52da3f640f883479693267b45c9237107 (diff) | |
| download | rneovim-0dfb4e2765c833557eb78ebee029e9b6a8c8bd26.tar.gz rneovim-0dfb4e2765c833557eb78ebee029e9b6a8c8bd26.tar.bz2 rneovim-0dfb4e2765c833557eb78ebee029e9b6a8c8bd26.zip | |
Merge pull request #14282 from janlazo/vim-8.2.2695
vim-patch:8.2.{2695,2697,2700,2701,2702}
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_compiler.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_compiler.vim b/src/nvim/testdir/test_compiler.vim index d361205baa..c3de7d0050 100644 --- a/src/nvim/testdir/test_compiler.vim +++ b/src/nvim/testdir/test_compiler.vim @@ -60,10 +60,10 @@ func Test_compiler_completion() call assert_match('^"compiler ' .. clist .. '$', @:) call feedkeys(":compiler p\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_equal('"compiler pbx perl php pylint pyunit', @:) + call assert_match('"compiler pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:) call feedkeys(":compiler! p\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_equal('"compiler! pbx perl php pylint pyunit', @:) + call assert_match('"compiler! pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:) endfunc func Test_compiler_error() |