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
|
try
|
||||||
let n = d[1500]
|
let n = d[1500]
|
||||||
catch
|
catch
|
||||||
let str=substitute(v:exception, '\v(.{14}).*( \d{4}).*', '\1\2', '')
|
let str = substitute(v:exception, '\v(.{14}).*( "\d{4}").*', '\1\2', '')
|
||||||
endtry
|
endtry
|
||||||
call assert_equal('Vim(let):E716: 1500', str)
|
call assert_equal('Vim(let):E716: "1500"', str)
|
||||||
|
|
||||||
" lookup each items
|
" lookup each items
|
||||||
for i in range(1500)
|
for i in range(1500)
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1925,
|
||||||
/**/
|
/**/
|
||||||
1924,
|
1924,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user