summaryrefslogtreecommitdiff
path: root/test/fixers
diff options
context:
space:
mode:
authorBartek thindil Jasicki <thindil@laeran.pl>2020-12-04 09:45:06 +0100
committerBartek thindil Jasicki <thindil@laeran.pl>2020-12-04 09:45:06 +0100
commitb85207d524c4fab07a140866cc6a5fee1c46e523 (patch)
treeefff49dd4434344e1fb87cc6a0b1348273f221e7 /test/fixers
parent09b8cc97de2bd78f09c8331be25ede9e4ef8abb1 (diff)
parent03b6978a270107b670b0363d50f3eed4b365ba26 (diff)
downloadale-b85207d524c4fab07a140866cc6a5fee1c46e523.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'test/fixers')
-rw-r--r--test/fixers/test_gofmt_fixer_callback.vader14
1 files changed, 3 insertions, 11 deletions
diff --git a/test/fixers/test_gofmt_fixer_callback.vader b/test/fixers/test_gofmt_fixer_callback.vader
index 16659655..99407173 100644
--- a/test/fixers/test_gofmt_fixer_callback.vader
+++ b/test/fixers/test_gofmt_fixer_callback.vader
@@ -21,10 +21,7 @@ Execute(The gofmt callback should return the correct default values):
AssertEqual
\ {
- \ 'read_temporary_file': 1,
- \ 'command': ale#Escape('xxxinvalid')
- \ . ' -l -w'
- \ . ' %t',
+ \ 'command': ale#Escape('xxxinvalid'),
\ },
\ ale#fixers#gofmt#Fix(bufnr(''))
@@ -35,11 +32,8 @@ Execute(The gofmt callback should include custom gofmt options):
AssertEqual
\ {
- \ 'read_temporary_file': 1,
\ 'command': ale#Escape('xxxinvalid')
- \ . ' -l -w'
- \ . ' ' . g:ale_go_gofmt_options
- \ . ' %t',
+ \ . ' ' . g:ale_go_gofmt_options,
\ },
\ ale#fixers#gofmt#Fix(bufnr(''))
@@ -50,9 +44,7 @@ Execute(The gofmt callback should support Go environment variables):
AssertEqual
\ {
- \ 'read_temporary_file': 1,
\ 'command': ale#Env('GO111MODULE', 'off')
- \ . ale#Escape('xxxinvalid') . ' -l -w'
- \ . ' %t',
+ \ . ale#Escape('xxxinvalid')
\ },
\ ale#fixers#gofmt#Fix(bufnr(''))