1
0
forked from aniani/vim

patch 8.2.0542: no test for E386

Problem:    No test for E386.
Solution:   Add a test. (Dominique Pelle, closes #5911)
This commit is contained in:
Bram Moolenaar
2020-04-11 18:36:38 +02:00
parent 81ea1dfb97
commit 8832a34578
2 changed files with 10 additions and 3 deletions

View File

@@ -1402,6 +1402,11 @@ func Test_search_errors()
call assert_fails("call search('pat', 'b', 1, [])", 'E745:')
call assert_fails("call search('pat', 'ns')", 'E475:')
call assert_fails("call search('pat', 'mr')", 'E475:')
new
call setline(1, ['foo', 'bar'])
call assert_fails('call feedkeys("/foo/;/bar/;\<CR>", "tx")', 'E386:')
bwipe!
endfunc
func Test_search_display_pattern()

View File

@@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
542,
/**/
541,
/**/