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 = []
|
let g:output = []
|
||||||
|
|
||||||
function! TestCallback(buffer, 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 []
|
return []
|
||||||
endfunction
|
endfunction
|
||||||
|
Loading…
Reference in New Issue
Block a user