diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-11-14 22:40:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 22:40:18 +0100 |
commit | d7ed9fa188b502e155ddbf6b626cf8fbfc92bbb8 (patch) | |
tree | bb4db6c18b78b9eb1839e10586b838e679b96648 | |
parent | 225f22b9d5dfd0d1582a56530142fe8ffb960a91 (diff) | |
parent | 294cef49012b7b0af13889fa66b3303fe678f559 (diff) | |
download | podman-d7ed9fa188b502e155ddbf6b626cf8fbfc92bbb8.tar.gz podman-d7ed9fa188b502e155ddbf6b626cf8fbfc92bbb8.tar.bz2 podman-d7ed9fa188b502e155ddbf6b626cf8fbfc92bbb8.zip |
Merge pull request #4518 from baude/alpinetopause
use pause image for check all
-rw-r--r-- | test/e2e/pull_test.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go index eee0b131b..96340ef30 100644 --- a/test/e2e/pull_test.go +++ b/test/e2e/pull_test.go @@ -339,7 +339,7 @@ var _ = Describe("Podman pull", func() { }) It("podman pull check all tags", func() { - session := podmanTest.PodmanNoCache([]string{"pull", "--all-tags", "alpine"}) + session := podmanTest.PodmanNoCache([]string{"pull", "--all-tags", "k8s.gcr.io/pause"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(session.LineInOuputStartsWith("Pulled Images:")).To(BeTrue()) @@ -348,10 +348,6 @@ var _ = Describe("Podman pull", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(len(session.OutputToStringArray())).To(BeNumerically(">", 4)) - - rmi := podmanTest.PodmanNoCache([]string{"rmi", "-a", "-f"}) - rmi.WaitWithDefaultTimeout() - Expect(rmi.ExitCode()).To(Equal(0)) }) It("podman pull from docker with nonexist --authfile", func() { |