Mercurial > vim
changeset 8722:ecb57048c2a8 v7.4.1650
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Mar 25 17:14:06 2016 +0100
patch 7.4.1650
Problem: Quickfix test fails.
Solution: Accept any number of matches.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 25 Mar 2016 17:15:05 +0100 |
parents | 8d1daebe21e8 |
children | 47ba605ff98f |
files | src/testdir/test_quickfix.vim src/version.c |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_quickfix.vim +++ b/src/testdir/test_quickfix.vim @@ -684,6 +684,11 @@ func Test_caddbuffer_to_empty() helpgr quickfix call setqflist([], 'r') cad - call assert_fails('cn', 'E553:') + try + cn + catch + " number of matches is unknown + call assert_true(v:exception =~ 'E553:') + endtry quit! endfunc