diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-01 12:03:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-01 12:03:56 -0500 |
commit | ba1ff710782960a1be6ebe7342bb26a556f300fa (patch) | |
tree | d9b39f3166041780ba44c174a363f6e111dc483a /test/functional/legacy | |
parent | 8821587748058ee1ad8523865b30a03582f8d7be (diff) | |
parent | 057e21b1e771e164346dd1723dbaf539e002270c (diff) | |
download | rneovim-ba1ff710782960a1be6ebe7342bb26a556f300fa.tar.gz rneovim-ba1ff710782960a1be6ebe7342bb26a556f300fa.tar.bz2 rneovim-ba1ff710782960a1be6ebe7342bb26a556f300fa.zip |
Merge pull request #13197 from janlazo/vim-8.2.1925
vim-patch:8.2.{639,666,1925,1926,1929,1932}
Diffstat (limited to 'test/functional/legacy')
-rw-r--r-- | test/functional/legacy/055_list_and_dict_types_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/legacy/055_list_and_dict_types_spec.lua b/test/functional/legacy/055_list_and_dict_types_spec.lua index 91ba8bb106..4d71a526c1 100644 --- a/test/functional/legacy/055_list_and_dict_types_spec.lua +++ b/test/functional/legacy/055_list_and_dict_types_spec.lua @@ -229,7 +229,7 @@ describe('list and dictionary types', function() try let n = d[1500] catch - $put =substitute(v:exception, '\v(.{14}).*( \d{4}).*', '\1\2', '') + $put = substitute(v:exception, '\v(.{14}).*( \"\d{4}\").*', '\1\2', '') endtry " Lookup each items. for i in range(1500) @@ -260,7 +260,7 @@ describe('list and dictionary types', function() expect([[ 3000 2900 2001 1600 1501 - Vim(let):E716: 1500 + Vim(let):E716: "1500" NONE 2999 33=999 {'33': 999}]]) |