diff options
author | pinicarus <pinicarus@protonmail.com> | 2020-10-28 12:51:38 +0100 |
---|---|---|
committer | pinicarus <pinicarus@protonmail.com> | 2020-10-28 12:51:38 +0100 |
commit | 7d69cdf4adc8ad2badb0d032572837471992b563 (patch) | |
tree | 301355354bc92aa0dd967d25b25338c8931190a7 /test/command_callback | |
parent | 15f44933c2a7e2917b37e666dec4fe53a342bc11 (diff) | |
download | ale-7d69cdf4adc8ad2badb0d032572837471992b563.zip |
test(erlang/erlc): make quotes optional in matches
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_erlang_erlc_command_callback.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/command_callback/test_erlang_erlc_command_callback.vader b/test/command_callback/test_erlang_erlc_command_callback.vader index e101bb43..ce390338 100644 --- a/test/command_callback/test_erlang_erlc_command_callback.vader +++ b/test/command_callback/test_erlang_erlc_command_callback.vader @@ -6,7 +6,7 @@ After: Execute(The default command should be correct.): let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr('')) - let g:regex = '^''erlc''\s\+-o\s\+[^\s]\+\s\+%t' + let g:regex = '^''\?erlc''\?\s\+-o\s\+[^\s]\+\s\+%t' let g:matched = match(g:cmd, g:regex) " match returns -1 if not found @@ -18,7 +18,7 @@ Execute(The default command should be correct.): Execute(The command should accept configured executable.): let b:ale_erlang_erlc_executable = '/usr/bin/erlc' let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr('')) - let g:regex = '^''/usr/bin/erlc''\s\+-o\s\+[^\s]\+\s\+%t' + let g:regex = '^''\?/usr/bin/erlc''\?\s\+-o\s\+[^\s]\+\s\+%t' let g:matched = match(g:cmd, g:regex) " match returns -1 if not found @@ -30,7 +30,7 @@ Execute(The command should accept configured executable.): Execute(The command should accept configured options.): let b:ale_erlang_erlc_options = '-I include' let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr('')) - let g:regex = '^''erlc''\s\+-o\s\+[^\s]\+\s\+-I include\s\+%t' + let g:regex = '^''\?erlc''\?\s\+-o\s\+[^\s]\+\s\+-I include\s\+%t' let g:matched = match(g:cmd, g:regex) " match returns -1 if not found |