diff options
author | Fabian <f.vioel@googlemail.com> | 2021-10-29 04:13:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 22:13:40 -0400 |
commit | 1dbbaf89bf5d3bcd1edac3af9938c2e2dd18f816 (patch) | |
tree | 1b1f9fd16f4405af5fe82744f42165a085d3a121 /test/functional/vimscript/exepath_spec.lua | |
parent | bb79e05f811968b398b3bedf95c012c888b96e44 (diff) | |
download | rneovim-1dbbaf89bf5d3bcd1edac3af9938c2e2dd18f816.tar.gz rneovim-1dbbaf89bf5d3bcd1edac3af9938c2e2dd18f816.tar.bz2 rneovim-1dbbaf89bf5d3bcd1edac3af9938c2e2dd18f816.zip |
fix(eval): checking for a non-empty string is too strict (#15987)
Cherry-pick check_for_nonempty_string() from patch vim-8.2.2133 and
apply it on the bases of https://github.com/neovim/neovim/pull/13489
https://github.com/vim/vim/commit/2a9d5d386bea8455b37c1accebc45683ec51d6fb
Diffstat (limited to 'test/functional/vimscript/exepath_spec.lua')
-rw-r--r-- | test/functional/vimscript/exepath_spec.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/vimscript/exepath_spec.lua b/test/functional/vimscript/exepath_spec.lua index 08d2c59af8..bbca954511 100644 --- a/test/functional/vimscript/exepath_spec.lua +++ b/test/functional/vimscript/exepath_spec.lua @@ -20,9 +20,10 @@ describe('exepath()', function() end) it('fails for invalid values', function() - for _, input in ipairs({'""', 'v:null', 'v:true', 'v:false', '{}', '[]'}) do + for _, input in ipairs({'v:null', 'v:true', 'v:false', '{}', '[]'}) do eq('Vim(call):E928: String required', exc_exec('call exepath('..input..')')) end + eq('Vim(call):E1142: Non-empty string required', exc_exec('call exepath("")')) command('let $PATH = fnamemodify("./test/functional/fixtures/bin", ":p")') for _, input in ipairs({'v:null', 'v:true', 'v:false'}) do eq('Vim(call):E928: String required', exc_exec('call exepath('..input..')')) |