comparison src/testdir/test_quickfix.vim @ 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 4ce26276caeb
children 7f974075eb8f
comparison
equal deleted inserted replaced
8721:8d1daebe21e8 8722:ecb57048c2a8
682 682
683 func Test_caddbuffer_to_empty() 683 func Test_caddbuffer_to_empty()
684 helpgr quickfix 684 helpgr quickfix
685 call setqflist([], 'r') 685 call setqflist([], 'r')
686 cad 686 cad
687 call assert_fails('cn', 'E553:') 687 try
688 cn
689 catch
690 " number of matches is unknown
691 call assert_true(v:exception =~ 'E553:')
692 endtry
688 quit! 693 quit!
689 endfunc 694 endfunc