summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-02-08 14:26:51 -0500
committerMatthew Heon <mheon@redhat.com>2021-02-18 14:29:57 -0500
commit566c8a43baf63d43f3bf2320f0feadc6104d931e (patch)
treeabfd89f0fc70bacd2de5490a1cdb78662ea75ae6 /test
parent3d14b56282dc16518aac1825db318d93495785af (diff)
downloadpodman-566c8a43baf63d43f3bf2320f0feadc6104d931e.tar.gz
podman-566c8a43baf63d43f3bf2320f0feadc6104d931e.tar.bz2
podman-566c8a43baf63d43f3bf2320f0feadc6104d931e.zip
Bump containers/buildah to v1.19.4
Fix handling of --iidfile to happen on the client side. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/build_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/build_test.go b/test/e2e/build_test.go
index 43524298f..9bab4c926 100644
--- a/test/e2e/build_test.go
+++ b/test/e2e/build_test.go
@@ -194,7 +194,7 @@ var _ = Describe("Podman build", func() {
inspect := podmanTest.Podman([]string{"inspect", string(id)})
inspect.WaitWithDefaultTimeout()
data := inspect.InspectImageJSON()
- Expect(data[0].ID).To(Equal(string(id)))
+ Expect("sha256:" + data[0].ID).To(Equal(string(id)))
})
It("podman Test PATH in built image", func() {