summaryrefslogtreecommitdiff
path: root/test/e2e/images_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-11-14 11:57:14 +0100
committerGitHub <noreply@github.com>2020-11-14 11:57:14 +0100
commit0cba4a581a0365806249be51736e2463ec1fed68 (patch)
tree7ad1fcba0b00f28e471c84d7225259107d0b8503 /test/e2e/images_test.go
parent738d62ea960af439bd545820e1853cbd73464493 (diff)
parentc69565d83c30c115330977aab5ff1d9c292f31bf (diff)
downloadpodman-0cba4a581a0365806249be51736e2463ec1fed68.tar.gz
podman-0cba4a581a0365806249be51736e2463ec1fed68.tar.bz2
podman-0cba4a581a0365806249be51736e2463ec1fed68.zip
Merge pull request #8327 from rhatdan/build
test for buildah version in container images.
Diffstat (limited to 'test/e2e/images_test.go')
-rw-r--r--test/e2e/images_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go
index b42061c20..96eccdc28 100644
--- a/test/e2e/images_test.go
+++ b/test/e2e/images_test.go
@@ -198,7 +198,7 @@ WORKDIR /test
Expect(result.OutputToString()).To(Equal("/test"))
})
- It("podman images filter after image", func() {
+ It("podman images filter since image", func() {
podmanTest.RestoreAllArtifacts()
rmi := podmanTest.PodmanNoCache([]string{"rmi", "busybox"})
rmi.WaitWithDefaultTimeout()
@@ -207,7 +207,7 @@ WORKDIR /test
dockerfile := `FROM quay.io/libpod/alpine:latest
`
podmanTest.BuildImage(dockerfile, "foobar.com/before:latest", "false")
- result := podmanTest.PodmanNoCache([]string{"images", "-q", "-f", "after=quay.io/libpod/alpine:latest"})
+ result := podmanTest.PodmanNoCache([]string{"images", "-q", "-f", "since=quay.io/libpod/alpine:latest"})
result.WaitWithDefaultTimeout()
Expect(result).Should(Exit(0))
Expect(len(result.OutputToStringArray())).To(Equal(0))