fix not to fail logic

pull/5150/head
Medya Gh 2019-08-21 17:58:25 -07:00
parent fc7c904642
commit 6abf0ed2d5
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ func (m *MinikubeRunner) RunCommand(cmdStr string, failError bool, waitForRun ..
if failError {
m.T.Fatalf(errMsg)
} else {
m.T.Errorf(errMsg)
m.T.Logf(errMsg)
}
}
return stdout, stderr, err