Merge pull request #1502 from crosbymichael/test-image
[tmp] Use amd64 test image
This commit is contained in:
		| @@ -33,6 +33,7 @@ func init() { | ||||
| 	case "s390x": | ||||
| 		testImage = "docker.io/s390x/alpine:latest" | ||||
| 	default: | ||||
| 		testImage = "docker.io/library/alpine:latest" | ||||
| 		// FIXME: change this back after multiplatform support is added to pull | ||||
| 		testImage = "docker.io/amd64/alpine:latest" | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -730,7 +730,9 @@ func TestShimSigkilled(t *testing.T) { | ||||
| 	defer cancel() | ||||
|  | ||||
| 	// redis unset its PDeathSignal making it a good candidate | ||||
| 	image, err = client.Pull(ctx, "docker.io/library/redis:alpine", WithPullUnpack) | ||||
| 	// | ||||
| 	// FIXME: change this back after multiplatform support is added to pull | ||||
| 	image, err = client.Pull(ctx, "docker.io/amd64/redis:alpine", WithPullUnpack) | ||||
| 	if err != nil { | ||||
| 		t.Fatal(err) | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Michael Crosby
					Michael Crosby