From 6e2fcec4ce4a4d7e15e74d5b8d9c5d7b3836ac54 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Sat, 31 Dec 2016 14:07:58 -0200 Subject: [PATCH] gofmt --- config/git/log_test.go | 1 + main.go | 3 +-- pipeline/compress/compress_test.go | 1 + split/split_test.go | 1 + uname/uname_test.go | 1 + 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/config/git/log_test.go b/config/git/log_test.go index 3ea1a605e..2342eff62 100644 --- a/config/git/log_test.go +++ b/config/git/log_test.go @@ -2,6 +2,7 @@ package git import ( "testing" + "github.com/stretchr/testify/assert" ) diff --git a/main.go b/main.go index 73da99c9c..243a90791 100644 --- a/main.go +++ b/main.go @@ -2,6 +2,7 @@ package main import ( "log" + "os" "github.com/goreleaser/releaser/config" "github.com/goreleaser/releaser/pipeline" @@ -10,7 +11,6 @@ import ( "github.com/goreleaser/releaser/pipeline/compress" "github.com/goreleaser/releaser/pipeline/release" "github.com/urfave/cli" - "os" ) var version = "master" @@ -32,7 +32,6 @@ func main() { Name: "config, c", Usage: "Load configuration from `FILE`", Value: "goreleaser.yml", - }, } app.Action = func(c *cli.Context) (err error) { diff --git a/pipeline/compress/compress_test.go b/pipeline/compress/compress_test.go index 212f376d6..4e7c76191 100644 --- a/pipeline/compress/compress_test.go +++ b/pipeline/compress/compress_test.go @@ -2,6 +2,7 @@ package compress import ( "testing" + "github.com/stretchr/testify/assert" ) diff --git a/split/split_test.go b/split/split_test.go index f064c8625..8541d068a 100644 --- a/split/split_test.go +++ b/split/split_test.go @@ -2,6 +2,7 @@ package split import ( "testing" + "github.com/stretchr/testify/assert" ) diff --git a/uname/uname_test.go b/uname/uname_test.go index b34423e76..e65445b7f 100644 --- a/uname/uname_test.go +++ b/uname/uname_test.go @@ -2,6 +2,7 @@ package uname import ( "testing" + "github.com/stretchr/testify/assert" )