diff --git a/client_unix_test.go b/client_unix_test.go index dbd5dda64..27fe7fab1 100644 --- a/client_unix_test.go +++ b/client_unix_test.go @@ -33,7 +33,6 @@ func init() { case "s390x": testImage = "docker.io/s390x/alpine:latest" default: - // FIXME: change this back after multiplatform support is added to pull - testImage = "docker.io/amd64/alpine:latest" + testImage = "docker.io/library/alpine:latest" } } diff --git a/container_linux_test.go b/container_linux_test.go index 8c78afbd4..093225884 100644 --- a/container_linux_test.go +++ b/container_linux_test.go @@ -730,9 +730,7 @@ func TestShimSigkilled(t *testing.T) { defer cancel() // redis unset its PDeathSignal making it a good candidate - // - // FIXME: change this back after multiplatform support is added to pull - image, err = client.Pull(ctx, "docker.io/amd64/redis:alpine", WithPullUnpack) + image, err = client.Pull(ctx, "docker.io/library/redis:alpine", WithPullUnpack) if err != nil { t.Fatal(err) }