From aa54c10bae015bddff02eecd88866c0cad007664 Mon Sep 17 00:00:00 2001 From: w0rp Date: Mon, 16 Jul 2018 14:18:50 +0100 Subject: [PATCH] Try to make tests pass on Windows again --- test/test_format_temporary_file_creation.vader | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/test_format_temporary_file_creation.vader b/test/test_format_temporary_file_creation.vader index 54a25873..385af908 100644 --- a/test/test_format_temporary_file_creation.vader +++ b/test/test_format_temporary_file_creation.vader @@ -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