diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/linter/test_golangci_lint.vader | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/linter/test_golangci_lint.vader b/test/linter/test_golangci_lint.vader index ee754bba..c4dfb79b 100644 --- a/test/linter/test_golangci_lint.vader +++ b/test/linter/test_golangci_lint.vader @@ -16,7 +16,7 @@ Execute(The golangci-lint defaults should be correct): AssertLinter 'golangci-lint', \ ale#Escape('golangci-lint') \ . ' run ' . ale#Escape(expand('%' . ':t')) - \ . ' --enable-all' + \ . ' ' Execute(The golangci-lint callback should use a configured executable): let b:ale_go_golangci_lint_executable = 'something else' @@ -24,7 +24,7 @@ Execute(The golangci-lint callback should use a configured executable): AssertLinter 'something else', \ ale#Escape('something else') \ . ' run ' . ale#Escape(expand('%' . ':t')) - \ . ' --enable-all' + \ . ' ' Execute(The golangci-lint callback should use configured options): let b:ale_go_golangci_lint_options = '--foobar' @@ -41,10 +41,10 @@ Execute(The golangci-lint callback should support environment variables): \ ale#Env('GO111MODULE', 'on') \ . ale#Escape('golangci-lint') \ . ' run ' . ale#Escape(expand('%' . ':t')) - \ . ' --enable-all' + \ . ' ' Execute(The golangci-lint `lint_package` option should use the correct command): let b:ale_go_golangci_lint_package = 1 AssertLinter 'golangci-lint', - \ ale#Escape('golangci-lint') . ' run --enable-all' + \ ale#Escape('golangci-lint') . ' run ' |