Remove extra log statements

pull/3314/head
Thomas Stromberg 2018-11-13 12:42:00 -08:00
parent 8771eae0ae
commit f0b358f2b4
1 changed files with 0 additions and 3 deletions

View File

@ -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)