remove debugging

pull/8095/head
Sharif Elgamal 2020-05-15 15:25:45 -07:00
parent c1c1d15b96
commit 942821bf48
1 changed files with 0 additions and 2 deletions

View File

@ -327,7 +327,6 @@ func validateStatusCmd(ctx context.Context, t *testing.T, profile string) {
// Custom format
rr, err = Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "status", "-f", "host:{{.Host}},kublet:{{.Kubelet}},apiserver:{{.APIServer}},kubeconfig:{{.Kubeconfig}}"))
t.Logf("CUSTOM: %s\n", rr.Stdout.String())
if err != nil {
t.Errorf("failed to run minikube status with custom format: args %q: %v", rr.Command(te), err)
}
@ -339,7 +338,6 @@ func validateStatusCmd(ctx context.Context, t *testing.T, profile string) {
// Json output
rr, err = Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "status", "-o", "json"))
t.Logf("JSON: %s\n", rr.Stdout.String())
if err != nil {
t.Errorf("failed to run minikube status with json output. args %q : %v", rr.Command(), err)
}