From 4f3190daa88583523df89d4cb7add1584e0e9b7d Mon Sep 17 00:00:00 2001 From: w0rp Date: Fri, 4 Jan 2019 14:51:55 +0000 Subject: Fix a test on Windows --- test/test_prepare_command.vader | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/test_prepare_command.vader') diff --git a/test/test_prepare_command.vader b/test/test_prepare_command.vader index 4a12b9d0..6a71eaed 100644 --- a/test/test_prepare_command.vader +++ b/test/test_prepare_command.vader @@ -64,7 +64,11 @@ Execute(cmd /s/c as a string should be used on Windows): Execute(Setting ale_shell should cause ale#job#PrepareCommand to use set shell): let g:ale_shell = '/foo/bar' - AssertEqual ['/foo/bar', '-c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar") + if has('win32') + AssertEqual ['/foo/bar', '/c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar") + else + AssertEqual ['/foo/bar', '-c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar") + endif let g:ale_shell_arguments = '-x' -- cgit v1.2.3