diff options
author | w0rp <devw0rp@gmail.com> | 2017-10-25 22:35:21 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-10-25 22:35:21 +0100 |
commit | 4af7219078e4aeb2c3a65928609f44cc7d7de1e8 (patch) | |
tree | 005aae6f50a456c76c8b67bf7c5d098c27ed01ae /test/sign | |
parent | 25d2af0b2529006ba869a5906afae028f7b9f28e (diff) | |
download | ale-4af7219078e4aeb2c3a65928609f44cc7d7de1e8.zip |
Make one of the sign tests work in all locales
Diffstat (limited to 'test/sign')
-rw-r--r-- | test/sign/test_linting_sets_signs.vader | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/sign/test_linting_sets_signs.vader b/test/sign/test_linting_sets_signs.vader index 271540e2..c23b4002 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]]) |