diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-17 06:50:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-17 06:50:48 -0700 |
commit | d0c5e216ca508d195b805d0e48b159cfbff868a9 (patch) | |
tree | 17d3309354ae33b50d35f68360747a8dcf60b48e /test | |
parent | a87cf6fef8f84ded410d547aa772b8f942c5f273 (diff) | |
parent | 024ae24f14a405cd0db40c52ef9d651a8d3ea6a9 (diff) | |
download | podman-d0c5e216ca508d195b805d0e48b159cfbff868a9.tar.gz podman-d0c5e216ca508d195b805d0e48b159cfbff868a9.tar.bz2 podman-d0c5e216ca508d195b805d0e48b159cfbff868a9.zip |
Merge pull request #2931 from TomSweeneyRedHat/dev/tsweeney/venbuildah
Vendor in latest Buildah
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/images_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go index 48a964db4..5a299fe75 100644 --- a/test/e2e/images_test.go +++ b/test/e2e/images_test.go @@ -174,7 +174,7 @@ var _ = Describe("Podman images", func() { result := podmanTest.Podman([]string{"images", "-q", "-f", "before=foobar.com/before:latest"}) result.WaitWithDefaultTimeout() Expect(result.ExitCode()).To(Equal(0)) - Expect(len(result.OutputToStringArray())).To(Equal(2)) + Expect(len(result.OutputToStringArray())).To(Equal(1)) }) It("podman images filter after image", func() { @@ -191,7 +191,7 @@ var _ = Describe("Podman images", func() { result := podmanTest.Podman([]string{"images", "-q", "-f", "after=docker.io/library/alpine:latest"}) result.WaitWithDefaultTimeout() Expect(result.ExitCode()).To(Equal(0)) - Expect(len(result.OutputToStringArray())).To(Equal(1)) + Expect(len(result.OutputToStringArray())).To(Equal(0)) }) It("podman image list filter after image", func() { @@ -208,7 +208,7 @@ var _ = Describe("Podman images", func() { result := podmanTest.Podman([]string{"image", "list", "-q", "-f", "after=docker.io/library/alpine:latest"}) result.WaitWithDefaultTimeout() Expect(result.ExitCode()).To(Equal(0)) - Expect(len(result.OutputToStringArray())).To(Equal(1)) + Expect(len(result.OutputToStringArray())).To(Equal(0)) }) It("podman images filter dangling", func() { @@ -222,7 +222,7 @@ var _ = Describe("Podman images", func() { result := podmanTest.Podman([]string{"images", "-q", "-f", "dangling=true"}) result.WaitWithDefaultTimeout() Expect(result.ExitCode()).To(Equal(0)) - Expect(len(result.OutputToStringArray())).To(Equal(1)) + Expect(len(result.OutputToStringArray())).To(Equal(0)) }) It("podman check for image with sha256: prefix", func() { |