diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-13 04:56:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 04:56:28 +0100 |
commit | a9969c23a343e675d9a628cd5d9456523aaea5b7 (patch) | |
tree | 0fa930a76bfae9d511d3324015ec7cbfd7963ec6 /libpod/image/image_test.go | |
parent | 5ea6cad20c9659da9bae38a660da584ee2b58aec (diff) | |
parent | 2aacfade75668e1452e895a48c8c311a2879a74a (diff) | |
download | podman-a9969c23a343e675d9a628cd5d9456523aaea5b7.tar.gz podman-a9969c23a343e675d9a628cd5d9456523aaea5b7.tar.bz2 podman-a9969c23a343e675d9a628cd5d9456523aaea5b7.zip |
Merge pull request #5191 from baude/fedoraminimaliskillingme
use quay.io/libpod/fedora-minimal for reliability
Diffstat (limited to 'libpod/image/image_test.go')
-rw-r--r-- | libpod/image/image_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libpod/image/image_test.go b/libpod/image/image_test.go index 3ff6210d9..19f7eee1e 100644 --- a/libpod/image/image_test.go +++ b/libpod/image/image_test.go @@ -18,7 +18,6 @@ import ( var ( bbNames = []string{"docker.io/library/busybox:latest", "docker.io/library/busybox", "docker.io/busybox:latest", "docker.io/busybox", "busybox:latest", "busybox"} bbGlibcNames = []string{"docker.io/library/busybox:glibc", "docker.io/busybox:glibc", "busybox:glibc"} - fedoraNames = []string{"registry.fedoraproject.org/fedora-minimal:latest", "registry.fedoraproject.org/fedora-minimal", "fedora-minimal:latest", "fedora-minimal"} ) type localImageTest struct { @@ -139,7 +138,6 @@ func TestImage_New(t *testing.T) { ir.Eventer = events.NewNullEventer() // Build the list of pull names names = append(names, bbNames...) - names = append(names, fedoraNames...) writer := os.Stdout // Iterate over the names and delete the image |