diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-08 09:44:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 09:44:40 -0400 |
commit | e6a5c0ffc1df78bf08aa25f4fe734b46a846a5d7 (patch) | |
tree | 5c2f2007f13105845dddc851b098220a04fe23b3 /test/e2e/rmi_test.go | |
parent | d1f6b2de67eccd36ba2717e8a4e2ab0b74fe4a46 (diff) | |
parent | b847ba7e30e2713f8ff10082e801a6815a023ef6 (diff) | |
download | podman-e6a5c0ffc1df78bf08aa25f4fe734b46a846a5d7.tar.gz podman-e6a5c0ffc1df78bf08aa25f4fe734b46a846a5d7.tar.bz2 podman-e6a5c0ffc1df78bf08aa25f4fe734b46a846a5d7.zip |
Merge pull request #9970 from baude/cispeed
speed up CI handling of images
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 5e6d66d53..03a347a6f 100644 --- a/test/e2e/rmi_test.go +++ b/test/e2e/rmi_test.go @@ -221,7 +221,7 @@ var _ = Describe("Podman rmi", func() { session = podmanTest.Podman([]string{"images", "-q", "-a"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(len(session.OutputToStringArray())).To(Equal(12)) + Expect(len(session.OutputToStringArray())).To(Equal(len(CACHE_IMAGES) + 1)) podmanTest.BuildImage(dockerfile, "test3", "true") @@ -236,7 +236,7 @@ var _ = Describe("Podman rmi", func() { session = podmanTest.Podman([]string{"images", "-q", "-a"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(len(session.OutputToString())).To(Equal(142)) + Expect(len(session.OutputToString())).To(Equal(155)) }) It("podman rmi -a with no images should be exit 0", func() { |