forked from aniani/vim
patch 8.2.1925: list/dict test fails
Problem: List/dict test fails. Solution: Correct expected exception.
This commit is contained in:
@@ -241,9 +241,9 @@ func Test_dict_big()
|
||||
try
|
||||
let n = d[1500]
|
||||
catch
|
||||
let str=substitute(v:exception, '\v(.{14}).*( \d{4}).*', '\1\2', '')
|
||||
let str = substitute(v:exception, '\v(.{14}).*( "\d{4}").*', '\1\2', '')
|
||||
endtry
|
||||
call assert_equal('Vim(let):E716: 1500', str)
|
||||
call assert_equal('Vim(let):E716: "1500"', str)
|
||||
|
||||
" lookup each items
|
||||
for i in range(1500)
|
||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1925,
|
||||
/**/
|
||||
1924,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user