From f0b358f2b42b78e2dc5943ee73ffdd2e9b170f99 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Tue, 13 Nov 2018 12:42:00 -0800 Subject: [PATCH] Remove extra log statements --- test/integration/addons_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index 5f735cfdb9..9c2dbdfa84 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -74,17 +74,14 @@ func readLineWithTimeout(b *bufio.Reader, timeout time.Duration) (string, error) func testDashboard(t *testing.T) { t.Parallel() minikubeRunner := NewMinikubeRunner(t) - t.Logf("Launching dashboard ...") cmd, out := minikubeRunner.RunDaemon("dashboard --url") defer func() { - t.Logf("Killing dashboard ...") err := cmd.Process.Kill() if err != nil { t.Logf("Failed to kill dashboard command: %v", err) } }() - t.Logf("Waiting for URL to be output by minikube dashboard...") s, err := readLineWithTimeout(out, 180*time.Second) if err != nil { t.Fatalf("failed to read url: %v", err)