diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-18 11:22:43 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-07-18 11:22:43 -0400 |
commit | 77937c4edd0e559ec66811ea20b103c329627a83 (patch) | |
tree | 7da1dec833786ea544ee4bd60c0767e6dae66dab /test | |
parent | 1d8a07615714345769e6932850b83b180e697008 (diff) | |
parent | 9c3bd3e427686855a8e75403d1715dd4b99ffa8a (diff) | |
download | rneovim-77937c4edd0e559ec66811ea20b103c329627a83.tar.gz rneovim-77937c4edd0e559ec66811ea20b103c329627a83.tar.bz2 rneovim-77937c4edd0e559ec66811ea20b103c329627a83.zip |
Merge #5058
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/legacy/055_list_and_dict_types_spec.lua | 23 | ||||
-rw-r--r-- | test/functional/legacy/101_hlsearch_spec.lua | 2 |
2 files changed, 1 insertions, 24 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 dee138e6d8..b9e5a8bc03 100644 --- a/test/functional/legacy/055_list_and_dict_types_spec.lua +++ b/test/functional/legacy/055_list_and_dict_types_spec.lua @@ -112,29 +112,6 @@ describe('list and dictionary types', function() expect('\n101101') end) - it('changing var type should fail', function() - source([[ - lang C - " The list from the first test repeated after splitting the tests. - let l = [1, 'as''d', [1, 2, function("strlen")], {'a': 1},] - " The dict from the first test repeated after splitting the tests. - let d = {'c': 'ccc', '1': 99, '3': 33, '-1': {'a': 1}} - try - let d = [] - catch - $put =v:exception[:14] . v:exception[-1:-1] - endtry - try - let l = {} - catch - $put =v:exception[:14] . v:exception[-1:-1] - endtry]]) - expect([[ - - Vim(let):E706: d - Vim(let):E706: l]]) - end) - it('removing items with :unlet', function() source([[ lang C diff --git a/test/functional/legacy/101_hlsearch_spec.lua b/test/functional/legacy/101_hlsearch_spec.lua index 0d88e99278..fa29e5fbe8 100644 --- a/test/functional/legacy/101_hlsearch_spec.lua +++ b/test/functional/legacy/101_hlsearch_spec.lua @@ -61,6 +61,6 @@ describe('v:hlsearch', function() 0:not highlighted 1:highlighted 0:not highlighted - Vim(let):E706:]]) + Vim(let):E745:]]) end) end) |