diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-21 16:26:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 16:26:20 +0200 |
commit | 835d2644b85a70d8483df44e93397beabf6518a0 (patch) | |
tree | 7ea9dd720282f9a354a5356a647515cc74e6ff44 /test/e2e/create_test.go | |
parent | 8b49d10550d32e066bc834768a44d6c848f4db3e (diff) | |
parent | cc65430145aee98ffefc4b9a505793e470134e94 (diff) | |
download | podman-835d2644b85a70d8483df44e93397beabf6518a0.tar.gz podman-835d2644b85a70d8483df44e93397beabf6518a0.tar.bz2 podman-835d2644b85a70d8483df44e93397beabf6518a0.zip |
Merge pull request #6280 from mheon/switch_off_noexec
Turn off 'noexec' option by default for named volumes
Diffstat (limited to 'test/e2e/create_test.go')
-rw-r--r-- | test/e2e/create_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/create_test.go b/test/e2e/create_test.go index 7d4858551..0a6373bfa 100644 --- a/test/e2e/create_test.go +++ b/test/e2e/create_test.go @@ -207,7 +207,7 @@ var _ = Describe("Podman create", func() { session = podmanTest.Podman([]string{"logs", "test_tmpfs"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) - Expect(session.OutputToString()).To(ContainSubstring("/create/test rw,nosuid,nodev,noexec,relatime - tmpfs")) + Expect(session.OutputToString()).To(ContainSubstring("/create/test rw,nosuid,nodev,relatime - tmpfs")) }) It("podman create --pod automatically", func() { |