From cc57d7776987b4e6c1354b4dac9fc0f5e5df572e Mon Sep 17 00:00:00 2001 From: Jacek Wysocki Date: Tue, 11 Jan 2022 08:59:14 +0100 Subject: [PATCH] fix: removed printfs --- cmd/kubectl-testkube/commands/tests/create.go | 3 --- 1 file changed, 3 deletions(-) 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)