remove unnecessary print in test

This commit is contained in:
Cedric Meury 2018-04-01 23:58:35 +02:00
parent 1b302db7f8
commit 96ae2a9827
1 changed files with 0 additions and 2 deletions

View File

@ -5,7 +5,6 @@ import (
"testing" "testing"
"errors" "errors"
"fmt"
"strings" "strings"
) )
@ -336,7 +335,6 @@ type mockHelmExec struct {
} }
func (helm *mockHelmExec) UpdateDeps(chart string) error { func (helm *mockHelmExec) UpdateDeps(chart string) error {
fmt.Println(chart)
if strings.Contains(chart, "error") { if strings.Contains(chart, "error") {
return errors.New("error") return errors.New("error")
} }