mirror of https://github.com/dense-analysis/ale
Try to make tests pass on Windows again
This commit is contained in:
parent
2a081e81db
commit
aa54c10bae
|
@ -21,7 +21,11 @@ Before:
|
|||
let g:output = []
|
||||
|
||||
function! TestCallback(buffer, output)
|
||||
let g:output = a:output
|
||||
" Extract just letters from the output.
|
||||
let g:output = filter(
|
||||
\ map(a:output, 'matchstr(v:val, ''[a-zA-Z]\+'')'),
|
||||
\ '!empty(v:val)'
|
||||
\)
|
||||
|
||||
return []
|
||||
endfunction
|
||||
|
|
Loading…
Reference in New Issue