summaryrefslogtreecommitdiff
path: root/test/linter/test_thriftcheck.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_thriftcheck.vader')
-rw-r--r--test/linter/test_thriftcheck.vader9
1 files changed, 2 insertions, 7 deletions
diff --git a/test/linter/test_thriftcheck.vader b/test/linter/test_thriftcheck.vader
index 0da3bd6d..bf2bbab4 100644
--- a/test/linter/test_thriftcheck.vader
+++ b/test/linter/test_thriftcheck.vader
@@ -8,14 +8,9 @@ Execute(The default command should be correct):
AssertLinter 'thriftcheck', ale#Escape('thriftcheck')
\ . ' --stdin-filename %s %t'
-Execute(The executable should be configurable):
+Execute(The executable and options should be configurable):
let b:ale_thrift_thriftcheck_executable = 'foobar'
-
- AssertLinter 'foobar', ale#Escape('foobar')
- \ . ' --stdin-filename %s %t'
-
-Execute(The string of options should be configurable):
let b:ale_thrift_thriftcheck_options = '--errors-only'
- AssertLinter 'thriftcheck', ale#Escape('thriftcheck')
+ AssertLinter 'foobar', ale#Escape('foobar')
\ . ' --errors-only --stdin-filename %s %t'