From f0a9d55e3d4b5aa51105974c0d7c7f2ebf07d837 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Wed, 2 Sep 2020 07:55:04 -0700 Subject: [PATCH] lint err --- test/integration/functional_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index bb6b2aa2f9..2aa7a881aa 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -518,7 +518,7 @@ func validateCacheCmd(ctx context.Context, t *testing.T, profile string) { } img := "minikube-local-cache-test:" + profile - rr, err := Run(t, exec.CommandContext(ctx, "docker", "build", "-t", img, dname)) + _, err := Run(t, exec.CommandContext(ctx, "docker", "build", "-t", img, dname)) if err != nil { t.Errorf("failed to build docker image: %v", err) }