aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript/exepath_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-10-27 13:32:47 +0800
committerGitHub <noreply@github.com>2022-10-27 13:32:47 +0800
commitc41873ab638589c1052404f5e5abef98a61db073 (patch)
tree4efcd2a9392b1cdfc3484eb712307c227c6d4667 /test/functional/vimscript/exepath_spec.lua
parent1fe31651bce5021ea6d6dfe6fa426fde7795a77f (diff)
parent762ca67091d13336f90350a15e0a1b965d6d5c01 (diff)
downloadrneovim-c41873ab638589c1052404f5e5abef98a61db073.tar.gz
rneovim-c41873ab638589c1052404f5e5abef98a61db073.tar.bz2
rneovim-c41873ab638589c1052404f5e5abef98a61db073.zip
Merge pull request #20827 from zeertzjq/vim-8.2.4234
vim-patch:8.2.{2653,4234}
Diffstat (limited to 'test/functional/vimscript/exepath_spec.lua')
-rw-r--r--test/functional/vimscript/exepath_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/vimscript/exepath_spec.lua b/test/functional/vimscript/exepath_spec.lua
index 439dd96fcd..db96b79743 100644
--- a/test/functional/vimscript/exepath_spec.lua
+++ b/test/functional/vimscript/exepath_spec.lua
@@ -23,7 +23,7 @@ describe('exepath()', function()
for _, input in ipairs({'v:null', 'v:true', 'v:false', '{}', '[]'}) do
eq('Vim(call):E1174: String required for argument 1', exc_exec('call exepath('..input..')'))
end
- eq('Vim(call):E1142: Non-empty string required for argument 1', exc_exec('call exepath("")'))
+ eq('Vim(call):E1175: Non-empty string required for argument 1', 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):E1174: String required for argument 1', exc_exec('call exepath('..input..')'))