From f99b027cc675ddd66119d0da0b120f5a22c2e54e Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 22 Nov 2017 23:45:51 +0000 Subject: Fix the JSON fixer post-processor test harder on Windows --- test/fix/test_ale_fix.vader | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'test/fix') diff --git a/test/fix/test_ale_fix.vader b/test/fix/test_ale_fix.vader index c630ab2a..2a3e62c0 100644 --- a/test/fix/test_ale_fix.vader +++ b/test/fix/test_ale_fix.vader @@ -148,15 +148,20 @@ Before: let l:ProcessWith = {buffer, output -> JSONPostProcessor(buffer, output)} endif + " Escaping needs to be handled specially for CMD on Windows. + let l:json_string = has('win32') + \ ? '{"output":["x","y","z"]}' + \ : ale#Escape('{"output": ["x", "y", "z"]}') + return { - \ 'command': 'echo ' . ale#Escape('{"output": ["x", "y", "z"]}'), + \ 'command': 'echo ' . l:json_string, \ 'read_buffer': 0, \ 'process_with': l:ProcessWith, \} endfunction function! JSONPostProcessor(buffer, output) abort - return json_decode(join(split(a:output[0]))).output + return json_decode(a:output[0]).output endfunction After: -- cgit v1.2.3