summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-04-17 06:50:48 -0700
committerGitHub <noreply@github.com>2019-04-17 06:50:48 -0700
commitd0c5e216ca508d195b805d0e48b159cfbff868a9 (patch)
tree17d3309354ae33b50d35f68360747a8dcf60b48e /test
parenta87cf6fef8f84ded410d547aa772b8f942c5f273 (diff)
parent024ae24f14a405cd0db40c52ef9d651a8d3ea6a9 (diff)
downloadpodman-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.go8
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() {