1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00

style: ran make fmt

This commit is contained in:
Carlos Alexandro Becker 2018-04-03 21:37:16 -03:00
parent 30663e4a1b
commit fe85f656e2
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 4 additions and 5 deletions

View File

@ -17,4 +17,3 @@ before:
```
If any of the hooks fails the build process is aborted.

View File

@ -15,9 +15,9 @@ func TestDescription(t *testing.T) {
func TestRunPipe(t *testing.T) {
for _, tc := range [][]string{
nil,
[]string{},
[]string{"go version"},
[]string{"go version", "go list"},
{},
{"go version"},
{"go version", "go list"},
} {
ctx := context.New(
config.Project{
@ -32,7 +32,7 @@ func TestRunPipe(t *testing.T) {
func TestRunPipeFail(t *testing.T) {
for _, tc := range [][]string{
[]string{"go tool foobar"},
{"go tool foobar"},
} {
ctx := context.New(
config.Project{