diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-07-08 21:16:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 21:16:04 +0200 |
commit | 8d37c2073f774d7f7e708cdb8c24f07c87e83587 (patch) | |
tree | cec947360ec713e9523404e813256379975c3263 /test/e2e/rmi_test.go | |
parent | edc7f52c9577a22f7dcd5b98fbd0125fb8d2da79 (diff) | |
parent | c187da23c49876f23a5b2fc0f4d94bedd44482e6 (diff) | |
download | podman-8d37c2073f774d7f7e708cdb8c24f07c87e83587.tar.gz podman-8d37c2073f774d7f7e708cdb8c24f07c87e83587.tar.bz2 podman-8d37c2073f774d7f7e708cdb8c24f07c87e83587.zip |
Merge pull request #3515 from baude/rootlessintegrationtests
speed up rootless tests
Diffstat (limited to 'test/e2e/rmi_test.go')
-rw-r--r-- | test/e2e/rmi_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/rmi_test.go b/test/e2e/rmi_test.go index 1687bf764..1b0329a83 100644 --- a/test/e2e/rmi_test.go +++ b/test/e2e/rmi_test.go @@ -55,7 +55,7 @@ var _ = Describe("Podman rmi", func() { }) It("podman rmi all images", func() { - podmanTest.PullImages([]string{nginx}) + podmanTest.RestoreArtifact(nginx) session := podmanTest.PodmanNoCache([]string{"rmi", "-a"}) session.WaitWithDefaultTimeout() images := podmanTest.PodmanNoCache([]string{"images"}) @@ -66,7 +66,7 @@ var _ = Describe("Podman rmi", func() { }) It("podman rmi all images forcibly with short options", func() { - podmanTest.PullImages([]string{nginx}) + podmanTest.RestoreArtifact(nginx) session := podmanTest.PodmanNoCache([]string{"rmi", "-fa"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |