From 4af7219078e4aeb2c3a65928609f44cc7d7de1e8 Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 25 Oct 2017 22:35:21 +0100 Subject: [PATCH] Make one of the sign tests work in all locales --- test/sign/test_linting_sets_signs.vader | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/sign/test_linting_sets_signs.vader b/test/sign/test_linting_sets_signs.vader index 271540e..c23b400 100644 --- a/test/sign/test_linting_sets_signs.vader +++ b/test/sign/test_linting_sets_signs.vader @@ -20,8 +20,7 @@ Before: let l:actual_sign_list = [] for l:line in split(l:output, "\n") - let l:match = matchlist(l:line, '\m\s*line=\(\d\+\).*name=\(ALE[a-zA-Z]\+\)') - + let l:match = matchlist(l:line, '\v^.*\=(\d+).*\=\d+.*\=(ALE[a-zA-Z]+Sign)') if len(l:match) > 0 call add(l:actual_sign_list, [l:match[1], l:match[2]])