summaryrefslogtreecommitdiff
path: root/test/sign
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-10-25 22:35:21 +0100
committerw0rp <devw0rp@gmail.com>2017-10-25 22:35:21 +0100
commit4af7219078e4aeb2c3a65928609f44cc7d7de1e8 (patch)
tree005aae6f50a456c76c8b67bf7c5d098c27ed01ae /test/sign
parent25d2af0b2529006ba869a5906afae028f7b9f28e (diff)
downloadale-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.vader3
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]])