summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-22 12:41:16 +0000
committerw0rp <devw0rp@gmail.com>2017-11-22 12:41:16 +0000
commite7865d2f9482497b568c11cf1f07a740d2da3907 (patch)
treef72b48a45bcdc8931b335d3e4f330b74375db4aa /test
parent074a011b0831f89252f62c3ab498c9337d4651a2 (diff)
downloadale-e7865d2f9482497b568c11cf1f07a740d2da3907.zip
Fix the empty echo fixer test on Windows
Diffstat (limited to 'test')
-rw-r--r--test/test_ale_fix.vader2
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()