diff options
author | w0rp <devw0rp@gmail.com> | 2017-10-25 01:11:46 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-10-25 01:11:46 +0100 |
commit | 960ae62aaa30d26fcfff57d6593e54a34a93ec68 (patch) | |
tree | 841e857572f946f16699779c320e51dfe77f997b /test | |
parent | 680672117f3c89886fd49e01a5b454c14ae477d8 (diff) | |
download | ale-960ae62aaa30d26fcfff57d6593e54a34a93ec68.zip |
Make the sign placement test pass more often by using another shell
Diffstat (limited to 'test')
-rw-r--r-- | test/sign/test_linting_sets_signs.vader | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sign/test_linting_sets_signs.vader b/test/sign/test_linting_sets_signs.vader index c2cc0db9..f9bd63b0 100644 --- a/test/sign/test_linting_sets_signs.vader +++ b/test/sign/test_linting_sets_signs.vader @@ -34,7 +34,7 @@ Before: \ 'name': 'testlinter', \ 'callback': 'TestCallback', \ 'executable': has('win32') ? 'cmd' : 'echo', - \ 'command': 'echo foo bar', + \ 'command': has('win32') ? 'echo foo bar' : '/bin/sh -c ''echo foo bar''', \}) |