diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-27 04:30:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-27 04:30:02 -0800 |
commit | 3f0c0cf80f5cbb3d3049c690c697a7d46ecc9d3a (patch) | |
tree | 522f358ca527f6ab10a905f5741515f09bb14307 /test/e2e | |
parent | c1489e63175925c90bc641aefd50dd6209efa068 (diff) | |
parent | 1a217b6aa1f6a913dadb55d5a1d16cae527ebe09 (diff) | |
download | podman-3f0c0cf80f5cbb3d3049c690c697a7d46ecc9d3a.tar.gz podman-3f0c0cf80f5cbb3d3049c690c697a7d46ecc9d3a.tar.bz2 podman-3f0c0cf80f5cbb3d3049c690c697a7d46ecc9d3a.zip |
Merge pull request #1874 from ypu/mount-test
Improve podman run --mount test
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/run_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index ff166f466..4ed1fbed7 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -204,7 +204,7 @@ var _ = Describe("Podman run", func() { Expect(session.OutputToString()).To(ContainSubstring("/run/test rw,relatime, shared")) }) - It("podman run with mount flag", func() { + It("podman run with --mount flag", func() { if podmanTest.Host.Arch == "ppc64le" { Skip("skip failing test on ppc64le") } @@ -226,7 +226,6 @@ var _ = Describe("Podman run", func() { found, matches := session.GrepString("/run/test") Expect(found).Should(BeTrue()) Expect(matches[0]).To(ContainSubstring("rw")) - Expect(matches[0]).To(ContainSubstring("relatime")) Expect(matches[0]).To(ContainSubstring("shared")) mountPath = filepath.Join(podmanTest.TempDir, "scratchpad") |