summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2019-04-14 14:07:42 -0400
committerTomSweeneyRedHat <tsweeney@redhat.com>2019-04-16 15:20:17 -0400
commit024ae24f14a405cd0db40c52ef9d651a8d3ea6a9 (patch)
tree17d3309354ae33b50d35f68360747a8dcf60b48e /test
parenta87cf6fef8f84ded410d547aa772b8f942c5f273 (diff)
downloadpodman-024ae24f14a405cd0db40c52ef9d651a8d3ea6a9.tar.gz
podman-024ae24f14a405cd0db40c52ef9d651a8d3ea6a9.tar.bz2
podman-024ae24f14a405cd0db40c52ef9d651a8d3ea6a9.zip
Vendor in latest Buildah
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
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() {