summaryrefslogtreecommitdiff
path: root/test/linter
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter')
-rw-r--r--test/linter/test_bicep_bicep.vader8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/linter/test_bicep_bicep.vader b/test/linter/test_bicep_bicep.vader
index 2beb2f22..a4057a72 100644
--- a/test/linter/test_bicep_bicep.vader
+++ b/test/linter/test_bicep_bicep.vader
@@ -6,16 +6,16 @@ After:
Execute(The default command should be correct):
if has('win32')
- AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile NUL %t'
+ AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile NUL %s'
else
- AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile /dev/null %t'
+ AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile /dev/null %s'
endif
Execute(The executable should be configurable):
let g:ale_bicep_bicep_executable = 'foobar'
if has('win32')
- AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile NUL %t'
+ AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile NUL %s'
else
- AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile /dev/null %t'
+ AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile /dev/null %s'
endif