diff --git a/pkg/drivers/drivers.go b/pkg/drivers/drivers.go index 852d0f7b17..4918dee9c3 100644 --- a/pkg/drivers/drivers.go +++ b/pkg/drivers/drivers.go @@ -17,7 +17,6 @@ limitations under the License. package drivers import ( - "fmt" "io" "io/ioutil" "os" @@ -169,8 +168,6 @@ func InstallOrUpdate(driver, destination string, minikubeVersion semver.Version) v := ExtractVMDriverVersion(string(output)) - fmt.Printf("InstallOrUpdate extracted version %s\n", v) - // if the driver doesn't return any version, download it if len(v) == 0 { return download(driver, destination) @@ -181,7 +178,6 @@ func InstallOrUpdate(driver, destination string, minikubeVersion semver.Version) return errors.Wrap(err, "can't parse driver version") } - fmt.Printf("InstallOrUpdate version %s\n", minikubeVersion.String()) // if the current driver version is older, download newer if vmDriverVersion.LT(minikubeVersion) { return download(driver, destination) diff --git a/test/integration/driver_install_or_update_test.go b/test/integration/driver_install_or_update_test.go index 3b93c2be6a..44f9985141 100644 --- a/test/integration/driver_install_or_update_test.go +++ b/test/integration/driver_install_or_update_test.go @@ -46,14 +46,6 @@ func TestDriverInstallOrUpdate(t *testing.T) { {name: "driver-with-older-version", path: filepath.Join(*testdataDir, "kvm2-driver-without-version")}, } - ingressPath := filepath.Join(*testdataDir, "nginx-ing.yaml") - _, err := os.Stat(ingressPath) - if err != nil { - t.Fatalf("Expected ingress-ing to exist. test: %s, got: %v", "TestDriverInstallOrUpdate", err) - } else { - fmt.Printf("TestDriverInstallOrUpdate ingress exist at: %s\n", ingressPath) - } - for _, tc := range tests { dir, err := ioutil.TempDir("", tc.name) if err != nil {