diff --git a/test/integration/cluster_dns_test.go b/test/integration/cluster_dns_test.go index 7ae909e32c115e39b12425bd012e3d23458468dd..37b6e1f612b25af6f95db2d300201ee15861d2e8 100644 --- a/test/integration/cluster_dns_test.go +++ b/test/integration/cluster_dns_test.go @@ -63,7 +63,7 @@ func waitForDNS(t *testing.T, c kubernetes.Interface) { t.Fatalf("Waited too long for k8s-app=kube-dns pods") } if err := commonutil.WaitForDeploymentToStabilize(c, "kube-system", "kube-dns", time.Minute*2); err != nil { - t.Fatalf("kube-dns deployment failed became stable within 2 minutes") + t.Fatalf("kube-dns deployment failed to stabilize within 2 minutes") } } diff --git a/test/integration/cluster_status_test.go b/test/integration/cluster_status_test.go index b5cef118d51fc8e85eb8510473b29a3b4f171bb9..9af4dd98a8414f4b0f604b0254d8e7b80713e4d4 100644 --- a/test/integration/cluster_status_test.go +++ b/test/integration/cluster_status_test.go @@ -42,7 +42,6 @@ func testClusterStatus(t *testing.T) { if c.Type != api.ComponentHealthy { continue } - t.Logf("Component: %v, Healthy: %s.\n", i.GetName(), c.Status) status = c.Status } if status != api.ConditionTrue { diff --git a/test/integration/util/util.go b/test/integration/util/util.go index 68e9ed5fe64690147e3c8b2e58a45507cc87cd05..b026f94d7a22dfe9d6768e12853148d766225842 100644 --- a/test/integration/util/util.go +++ b/test/integration/util/util.go @@ -307,7 +307,6 @@ func Retry(t *testing.T, callback func() error, d time.Duration, attempts int) ( if err == nil { return nil } - t.Logf("Error: %s, Retrying in %s. %d Retries remaining.", err, d, attempts-i) time.Sleep(d) } return err