From 64201731e0e2894a570de20b05041b94a699e285 Mon Sep 17 00:00:00 2001 From: Ilya Zuyev Date: Fri, 12 Feb 2021 16:11:30 -0800 Subject: [PATCH] Run goimports --- test/integration/pkg_install_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/integration/pkg_install_test.go b/test/integration/pkg_install_test.go index cbaeeb81f4..cc7f21faf8 100644 --- a/test/integration/pkg_install_test.go +++ b/test/integration/pkg_install_test.go @@ -58,7 +58,6 @@ var distros = []string{ var timeout = Minutes(10) - // TestPackageInstall tests installation of .deb packages with minikube itself and with kvm2 driver // on debian/ubuntu docker images enumerated in "distros" func TestDebPackageInstall(t *testing.T) { @@ -106,7 +105,6 @@ func TestDebPackageInstall(t *testing.T) { } } - func dpkgInstall(ctx context.Context, t *testing.T, image, deb string) (*RunResult, error) { return Run(t, exec.CommandContext(ctx, "docker", "run", "--rm", fmt.Sprintf("-v%s:/var/tmp", filepath.Dir(deb)), @@ -114,7 +112,6 @@ func dpkgInstall(ctx context.Context, t *testing.T, image, deb string) (*RunResu "sh", "-c", fmt.Sprintf("apt-get update; dpkg -i /var/tmp/%s", filepath.Base(deb)))) } - func dpkgInstallDriver(ctx context.Context, t *testing.T, image, deb string) (*RunResult, error) { return Run(t, exec.CommandContext(ctx, "docker", "run", "--rm", fmt.Sprintf("-v%s:/var/tmp", filepath.Dir(deb)),