diff --git a/cmd/kubectl-testkube/commands/tests/create.go b/cmd/kubectl-testkube/commands/tests/create.go index 39451cc371a..17a32329052 100644 --- a/cmd/kubectl-testkube/commands/tests/create.go +++ b/cmd/kubectl-testkube/commands/tests/create.go @@ -2,7 +2,6 @@ package tests import ( "encoding/json" - "fmt" "io/ioutil" "os" @@ -43,8 +42,6 @@ func NewCreateTestsCmd() *cobra.Command { err = json.Unmarshal(content, &options) ui.ExitOnError("Invalid file content", err) - fmt.Printf("%+v\n", options) - client, _ := GetClient(cmd) test, _ := client.GetTest(options.Name, options.Namespace)