From eddda2f8b599a52e92c99795f42c0c4ba8e15f7c Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 17 Jan 2018 18:11:20 +0000 Subject: [PATCH] Fix a command wrapper test on Windows --- test/test_wrap_comand.vader | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_wrap_comand.vader b/test/test_wrap_comand.vader index 8c1569b1..7ddb06a1 100644 --- a/test/test_wrap_comand.vader +++ b/test/test_wrap_comand.vader @@ -5,7 +5,7 @@ Before: function! TestCommand(expected_part, input) abort let l:expected = has('win32') - \ ? 'cmd /c ' . a:expected_part + \ ? 'cmd /s/c "' . a:expected_part . '"' \ : split(&shell) + split(&shellcmdflag) + [a:expected_part] AssertEqual l:expected, ale#job#PrepareCommand(bufnr(''), a:input)