From 825d7bbeca6fbb75b151ba91a45cb169862e93bb Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Tue, 10 Dec 2019 21:26:37 -0800 Subject: [PATCH] fix integration test --- 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 0738448273..1480538ca7 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -357,7 +357,7 @@ func validateCacheCmd(ctx context.Context, t *testing.T, profile string) { t.Run("cache reload", func(t *testing.T) { // deleting image inside minikube node manually and expecting reload to bring it back img := "busybox:latest" // deleting image inside minikube node manually - rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "ssh", "sudo", "crictl", "rmi", img)) + rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "ssh", "sudo", "docker", "rmi", img)) // for some reason crictl rmi doesn't work if err != nil { t.Errorf("failed to delete inside the node %q : %v", rr.Command(), err) }