Fix a fixer test on Windows

This commit is contained in:
w0rp 2017-11-22 22:50:27 +00:00
parent 8dd542bed0
commit 6318a08e08
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ Before:
endfunction
function! JSONPostProcessor(buffer, output) abort
return json_decode(a:output[0]).output
return json_decode(join(split(a:output[0]))).output
endfunction
After: