moving minikube runner to its own file

Fix typo
pull/4946/head
Medya Gh 2019-07-23 15:16:30 -07:00
parent 2367553316
commit f6e6d6ca55
2 changed files with 2 additions and 2 deletions

View File

@ -46,9 +46,9 @@ func testTunnel(t *testing.T) {
}
t.Log("starting tunnel test...")
mkNewMinikubeRunner(t, "--wait=false")
mk := NewMinikubeRunner(t, "--wait=false")
go func() {
output := mkCommand("tunnel --alsologtostderr -v 8 --logtostderr", true)
output := mk.RunCommand("tunnel --alsologtostderr -v 8 --logtostderr", true)
if t.Failed() {
fmt.Println(output)
}