Skip to content

Commit

Permalink
Merge pull request #16989 from sstosh/fix-e2e
Browse files Browse the repository at this point in the history
e2e: fix run_volume_test
  • Loading branch information
openshift-merge-robot authored Jan 5, 2023
2 parents d0b0d95 + fb73121 commit 7f3dd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/run_volume_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ var _ = Describe("Podman run with volumes", func() {
Expect(err).ToNot(HaveOccurred(), "os.Create(testfile)")
f.Close()
Expect(err).ToNot(HaveOccurred())
session := podmanTest.Podman([]string{"run", "-v", fmt.Sprintf("%s:/data", mountPath), REDIS_IMAGE, "ls", "/data/test1"})
session := podmanTest.Podman([]string{"run", "-v", fmt.Sprintf("%s:/data:Z", mountPath), REDIS_IMAGE, "ls", "/data/test1"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
})
Expand Down

0 comments on commit 7f3dd30

Please sign in to comment.