diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index c2de8b11d3..2da8dadbe3 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -670,7 +670,7 @@ func validateServiceCmd(ctx context.Context, t *testing.T, profile string) { t.Fatalf("failed to get service url. args %q : %v", rr.Command(), err) } if rr.Stderr.String() != "" { - t.Errorf("expected stderr to be empty but got *%q*", rr.Stderr) + t.Logf("expected stderr to be empty but got *%q*", rr.Stderr) } endpoint := strings.TrimSpace(rr.Stdout.String()) @@ -714,8 +714,6 @@ func validateServiceCmd(ctx context.Context, t *testing.T, profile string) { if resp.StatusCode != http.StatusOK { t.Fatalf("expected status code for %q to be -%q- but got *%q*", endpoint, http.StatusOK, resp.StatusCode) } - // this log is added to make this flake result obvious: https://github.com/kubernetes/minikube/issues/7765 - t.Logf("access to %s is success: %d", endpoint, resp.StatusCode) } // validateAddonsCmd asserts basic "addon" command functionality