diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-22 12:41:16 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-22 12:41:16 +0000 |
commit | e7865d2f9482497b568c11cf1f07a740d2da3907 (patch) | |
tree | f72b48a45bcdc8931b335d3e4f330b74375db4aa /test/test_ale_fix.vader | |
parent | 074a011b0831f89252f62c3ab498c9337d4651a2 (diff) | |
download | ale-e7865d2f9482497b568c11cf1f07a740d2da3907.zip |
Fix the empty echo fixer test on Windows
Diffstat (limited to 'test/test_ale_fix.vader')
-rw-r--r-- | test/test_ale_fix.vader | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ale_fix.vader b/test/test_ale_fix.vader index c5deabb4..aeb5bd09 100644 --- a/test/test_ale_fix.vader +++ b/test/test_ale_fix.vader @@ -107,7 +107,7 @@ Before: " echo will output a single blank line, and we should ingore it. function! IgnoredEmptyOutput(buffer, output) - return {'command': 'echo'} + return {'command': has('win32') ? 'echo(' : 'echo'} endfunction function! SetUpLinters() |