diff --git a/docker/docker_transport_test.go b/docker/docker_transport_test.go index 8b2b1b1f7a..1cb3bfcff1 100644 --- a/docker/docker_transport_test.go +++ b/docker/docker_transport_test.go @@ -153,7 +153,7 @@ func TestReferencePolicyConfigurationNamespaces(t *testing.T) { } func TestReferenceNewImage(t *testing.T) { - ref, err := ParseReference("//busybox") + ref, err := ParseReference("//quay.io/libpod/busybox") require.NoError(t, err) img, err := ref.NewImage(context.Background(), &types.SystemContext{ RegistriesDirPath: "/this/does/not/exist", @@ -166,7 +166,7 @@ func TestReferenceNewImage(t *testing.T) { } func TestReferenceNewImageSource(t *testing.T) { - ref, err := ParseReference("//busybox") + ref, err := ParseReference("//quay.io/libpod/busybox") require.NoError(t, err) src, err := ref.NewImageSource(context.Background(), &types.SystemContext{RegistriesDirPath: "/this/does/not/exist", DockerPerHostCertDirPath: "/this/does/not/exist"}) @@ -175,7 +175,7 @@ func TestReferenceNewImageSource(t *testing.T) { } func TestReferenceNewImageDestination(t *testing.T) { - ref, err := ParseReference("//busybox") + ref, err := ParseReference("//quay.io/libpod/busybox") require.NoError(t, err) dest, err := ref.NewImageDestination(context.Background(), &types.SystemContext{RegistriesDirPath: "/this/does/not/exist", DockerPerHostCertDirPath: "/this/does/not/exist"})