aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_system.vim
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-27 10:10:11 -0400
committerGitHub <noreply@github.com>2021-03-27 10:10:11 -0400
commit75a9db5b7d60c016a950dac7f0a0932e7d7c6df8 (patch)
treeec4c92e7763b803f376a16d23a3420d1497f53a2 /src/nvim/testdir/test_system.vim
parentf0ace6d419380907b719edd2ea1d2256e92beb84 (diff)
parent9118bf191e1657732bdd5cb5fb1f98dc17cf7f41 (diff)
downloadrneovim-75a9db5b7d60c016a950dac7f0a0932e7d7c6df8.tar.gz
rneovim-75a9db5b7d60c016a950dac7f0a0932e7d7c6df8.tar.bz2
rneovim-75a9db5b7d60c016a950dac7f0a0932e7d7c6df8.zip
Merge pull request #14223 from janlazo/vim-8.2.2659
vim-patch:8.2.{1666,2045,2659,2662}
Diffstat (limited to 'src/nvim/testdir/test_system.vim')
-rw-r--r--src/nvim/testdir/test_system.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_system.vim b/src/nvim/testdir/test_system.vim
index 9cf8690d57..6bbe714d19 100644
--- a/src/nvim/testdir/test_system.vim
+++ b/src/nvim/testdir/test_system.vim
@@ -93,7 +93,6 @@ function! Test_system_exmode()
endfunc
func Test_system_with_shell_quote()
- throw 'skipped: enable after porting method patches'
CheckMSWindows
call mkdir('Xdir with spaces', 'p')
@@ -122,7 +121,8 @@ func Test_system_with_shell_quote()
let msg = printf('shell=%s shellxquote=%s', &shell, &shellxquote)
try
- let out = 'echo 123'->system()
+ " let out = 'echo 123'->system()
+ let out = system('echo 123')
catch
call assert_report(printf('%s: %s', msg, v:exception))
continue