summaryrefslogtreecommitdiff
path: root/test/fix
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-22 22:50:27 +0000
committerw0rp <devw0rp@gmail.com>2017-11-22 22:50:27 +0000
commit6318a08e08716d460f8441457813875495050023 (patch)
treecc8ad2e78dad4ff5b212b82a8a0a72bac3bb29a1 /test/fix
parent8dd542bed0dd39f4af6897410d36a048fe796518 (diff)
downloadale-6318a08e08716d460f8441457813875495050023.zip
Fix a fixer test on Windows
Diffstat (limited to 'test/fix')
-rw-r--r--test/fix/test_ale_fix.vader2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fix/test_ale_fix.vader b/test/fix/test_ale_fix.vader
index 7e0ea33f..c630ab2a 100644
--- a/test/fix/test_ale_fix.vader
+++ b/test/fix/test_ale_fix.vader
@@ -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: