diff --git a/pipeline/brew/brew.go b/pipeline/brew/brew.go index 2389a32b3..330628bfc 100644 --- a/pipeline/brew/brew.go +++ b/pipeline/brew/brew.go @@ -5,7 +5,6 @@ package brew import ( "bytes" "errors" - "fmt" "path/filepath" "strings" "text/template" @@ -79,7 +78,6 @@ func buildFormula(ctx *context.Context, client client.Client, folder string) (by if err != nil { return bytes.Buffer{}, err } - fmt.Println("testsssssss", data.Tests) return doBuildFormula(data) } diff --git a/pipeline/brew/brew_test.go b/pipeline/brew/brew_test.go index 5a561f2a2..29ea4ee2b 100644 --- a/pipeline/brew/brew_test.go +++ b/pipeline/brew/brew_test.go @@ -88,6 +88,7 @@ func TestSplit(t *testing.T) { var parts = split("system \"true\"\nsystem \"#{bin}/foo -h\"") assert.Equal([]string{"system \"true\"", "system \"#{bin}/foo -h\""}, parts) } + func TestRunPipe(t *testing.T) { assert := assert.New(t) folder, err := ioutil.TempDir("", "goreleasertest")