summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJeff Willette <jrwillette88@gmail.com>2017-11-20 23:50:14 +0900
committerJeff Willette <jrwillette88@gmail.com>2017-11-20 23:50:14 +0900
commitb9f02ffb275b1d120967ab163e79959d3673ffd6 (patch)
treedf475aab52a6f0199e36405023a04d3e8c05cb8a /test
parentf20e5a4cf0e56c3c89ef7be4730924be377e5f61 (diff)
downloadale-b9f02ffb275b1d120967ab163e79959d3673ffd6.zip
Added filename key for `go build` linter
- Re: f224ce8a377bbb3a0deb78b98fdc6c43555791e2 - The issues that prompted the above commit which reverted changes made to `go build` and `gometalinter` seemed to suggest that the main issue was with gometalinter and that changes should be put into different commits so they are independent of each other - This commit reinstates the changes to the `go build` linter which seem to be uncontested and it also seems absolutely necessary to show errors from all files in the package which may have caused a build failure.
Diffstat (limited to 'test')
-rw-r--r--test/handler/test_gobuild_handler.vader5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/handler/test_gobuild_handler.vader b/test/handler/test_gobuild_handler.vader
index ce2119cd..ec77f9c4 100644
--- a/test/handler/test_gobuild_handler.vader
+++ b/test/handler/test_gobuild_handler.vader
@@ -28,7 +28,7 @@ Execute (The gobuild handler should handle names with spaces):
\ ]), 'v:val[1:4]')
Execute (The gobuild handler should handle relative paths correctly):
- silent file! /foo/bar/baz.go
+ call ale#test#SetFilename('app/test.go')
AssertEqual
\ [
@@ -37,8 +37,9 @@ Execute (The gobuild handler should handle relative paths correctly):
\ 'col': 0,
\ 'text': 'missing argument for Printf("%s"): format reads arg 2, have only 1 args',
\ 'type': 'E',
+ \ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
\ },
\ ],
\ ale_linters#go#gobuild#Handler(bufnr(''), [
- \ 'baz.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args',
+ \ 'test.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args',
\ ])