diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-22 22:50:27 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-22 22:50:27 +0000 |
commit | 6318a08e08716d460f8441457813875495050023 (patch) | |
tree | cc8ad2e78dad4ff5b212b82a8a0a72bac3bb29a1 | |
parent | 8dd542bed0dd39f4af6897410d36a048fe796518 (diff) | |
download | ale-6318a08e08716d460f8441457813875495050023.zip |
Fix a fixer test on Windows
-rw-r--r-- | test/fix/test_ale_fix.vader | 2 |
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: |