fix TestFunctional/parallel/LoadImage by using diff base images

pull/11405/head
Steven Powell 2021-05-13 13:31:17 -07:00
parent 1be59b8f23
commit 4f50ca45a8
1 changed files with 2 additions and 2 deletions

View File

@ -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())