diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-02-08 14:26:51 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-02-08 16:02:20 -0500 |
commit | 45981ba29ae75ec328bfd14018ec4ada52e7f189 (patch) | |
tree | bc9af98e3debada941cd025dfbb7a3ac490c6706 /test/e2e | |
parent | 19507d0ffe8cda0a69f056838556f471fd9e61fa (diff) | |
download | podman-45981ba29ae75ec328bfd14018ec4ada52e7f189.tar.gz podman-45981ba29ae75ec328bfd14018ec4ada52e7f189.tar.bz2 podman-45981ba29ae75ec328bfd14018ec4ada52e7f189.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/e2e')
-rw-r--r-- | test/e2e/build_test.go | 2 |
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() { |