diff options
| author | Shane Smith <shane.wm.smith@gmail.com> | 2019-09-18 16:00:06 -0400 |
|---|---|---|
| committer | Shane Smith <shane.wm.smith@gmail.com> | 2019-10-27 15:33:29 -0400 |
| commit | a123050c1a8db57d0d34464eb61bc3248747725a (patch) | |
| tree | dc91fbec9b5b23acaf64d9db0d0de57f9620794a /src/nvim/testdir | |
| parent | 479c01412242c11eab8bdbe62048b1351731bea2 (diff) | |
| download | rneovim-a123050c1a8db57d0d34464eb61bc3248747725a.tar.gz rneovim-a123050c1a8db57d0d34464eb61bc3248747725a.tar.bz2 rneovim-a123050c1a8db57d0d34464eb61bc3248747725a.zip | |
vim-patch:8.1.0252: quickfix functions are too long
Problem: Quickfix functions are too long.
Solution: Refactor. (Yegappan Lakshmanan, closes vim/vim#2950)
https://github.com/vim/vim/commit/de3b3677f7eace66be454196db0fbf710cfc8c5e
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index 6f58b0084c..c0f39884ea 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -1045,8 +1045,8 @@ func Test_efm2() set efm=%f:%s cexpr 'Xtestfile:Line search text' let l = getqflist() - call assert_equal(l[0].pattern, '^\VLine search text\$') - call assert_equal(l[0].lnum, 0) + call assert_equal('^\VLine search text\$', l[0].pattern) + call assert_equal(0, l[0].lnum) let l = split(execute('clist', ''), "\n") call assert_equal([' 1 Xtestfile:^\VLine search text\$: '], l) |