aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript/let_spec.lua
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-06-25 17:52:39 +0200
committerGitHub <noreply@github.com>2022-06-25 17:52:39 +0200
commit9f592780b5bb8c69e18784c440c711dc5a4684e2 (patch)
tree34c4abe44693550d88221cbd140828d2657dcd7a /test/functional/vimscript/let_spec.lua
parentb7084fef4c850d0352488b14dcff0f36a7e75e1c (diff)
parentf977f9445f7689fc32a136108ff92b3c2137968c (diff)
downloadrneovim-9f592780b5bb8c69e18784c440c711dc5a4684e2.tar.gz
rneovim-9f592780b5bb8c69e18784c440c711dc5a4684e2.tar.bz2
rneovim-9f592780b5bb8c69e18784c440c711dc5a4684e2.zip
Merge pull request #16271 from 3N4N/fix-15913
fix: make_filter_cmd for powershell as shell
Diffstat (limited to 'test/functional/vimscript/let_spec.lua')
-rw-r--r--test/functional/vimscript/let_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/vimscript/let_spec.lua b/test/functional/vimscript/let_spec.lua
index 6e93655e32..85c9c690f9 100644
--- a/test/functional/vimscript/let_spec.lua
+++ b/test/functional/vimscript/let_spec.lua
@@ -7,7 +7,7 @@ local eval = helpers.eval
local meths = helpers.meths
local exec_capture = helpers.exec_capture
local source = helpers.source
-local nvim_dir = helpers.nvim_dir
+local testprg = helpers.testprg
before_each(clear)
@@ -59,7 +59,7 @@ describe(':let', function()
end)
it("multibyte env var to child process #8398 #9267", function()
- local cmd_get_child_env = "let g:env_from_child = system(['"..nvim_dir.."/printenv-test', 'NVIM_TEST_LET'])"
+ local cmd_get_child_env = ("let g:env_from_child = system(['%s', 'NVIM_TEST_LET'])"):format(testprg('printenv-test'))
command("let $NVIM_TEST_LET = 'AìaB'")
command(cmd_get_child_env)
eq(eval('$NVIM_TEST_LET'), eval('g:env_from_child'))