diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-18 14:41:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 14:41:15 -0400 |
commit | 4ec227079011faef53e22b868d475a831b1f9e89 (patch) | |
tree | c284fb692d70cb9e490b150814ad0e1a91bd595a /test/e2e/run_test.go | |
parent | a3d8b48fd56a722642f7cbcad52b2fa88f12b656 (diff) | |
parent | 9dd088e555870c6bf149f9d83a5095880580a56a (diff) | |
download | podman-4ec227079011faef53e22b868d475a831b1f9e89.tar.gz podman-4ec227079011faef53e22b868d475a831b1f9e89.tar.bz2 podman-4ec227079011faef53e22b868d475a831b1f9e89.zip |
Merge pull request #10829 from cevich/update_images
Update images
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index d68aa6ac4..1fb1a179a 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -946,7 +946,7 @@ USER mail`, BB) Expect(err).To(BeNil()) mountpoint := "/myvol/" - session := podmanTest.Podman([]string{"create", "--volume", vol + ":" + mountpoint, ALPINE, "cat", mountpoint + filename}) + session := podmanTest.Podman([]string{"create", "--volume", vol + ":" + mountpoint + ":z", ALPINE, "cat", mountpoint + filename}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) ctrID := session.OutputToString() |