diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-10-26 21:34:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 21:34:18 +0800 |
commit | c00e711d5a860fb019f594d164b4327d942313f8 (patch) | |
tree | 6b88d5ab645201a103cad3a67a98eadb07e6e5b4 /test/functional/legacy/eval_spec.lua | |
parent | d60fa43466eaf59999e39860ce6d0ce2fa2cfb36 (diff) | |
parent | 46a54dd6a03f51ba08142abe0aa5710705917987 (diff) | |
download | rneovim-c00e711d5a860fb019f594d164b4327d942313f8.tar.gz rneovim-c00e711d5a860fb019f594d164b4327d942313f8.tar.bz2 rneovim-c00e711d5a860fb019f594d164b4327d942313f8.zip |
Merge pull request #20814 from zeertzjq/vim-8.2.0610
vim-patch:8.2.{0610,0619,1852}
Diffstat (limited to 'test/functional/legacy/eval_spec.lua')
-rw-r--r-- | test/functional/legacy/eval_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/eval_spec.lua b/test/functional/legacy/eval_spec.lua index 05d853622e..b5e45a86c1 100644 --- a/test/functional/legacy/eval_spec.lua +++ b/test/functional/legacy/eval_spec.lua @@ -639,7 +639,7 @@ describe('eval', function() end) it('function name includes a colon', function() - eq('Vim(function):E128: Function name must start with a capital or "s:": b:test()\\nendfunction', + eq('Vim(function):E884: Function name cannot contain a colon: b:test()\\nendfunction', exc_exec(dedent([[ function! b:test() endfunction]]))) |