From 4f50ca45a8222848b948d79c21ac112c2c66d4f3 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Thu, 13 May 2021 13:31:17 -0700 Subject: [PATCH] fix TestFunctional/parallel/LoadImage by using diff base images --- test/integration/functional_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 185515f979..687bc8e771 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -216,7 +216,7 @@ func validateLoadImage(ctx context.Context, t *testing.T, profile string) { } defer PostMortemLogs(t, profile) // pull busybox - busyboxImage := "busybox:latest" + busyboxImage := "busybox:1.33" rr, err := Run(t, exec.CommandContext(ctx, "docker", "pull", busyboxImage)) if err != nil { t.Fatalf("failed to setup test (pull image): %v\n%s", err, rr.Output()) @@ -257,7 +257,7 @@ func validateRemoveImage(ctx context.Context, t *testing.T, profile string) { defer PostMortemLogs(t, profile) // pull busybox - busyboxImage := "busybox:latest" + busyboxImage := "busybox:1.32" rr, err := Run(t, exec.CommandContext(ctx, "docker", "pull", busyboxImage)) if err != nil { t.Fatalf("failed to setup test (pull image): %v\n%s", err, rr.Output())