diff options
author | Matt Heon <mheon@redhat.com> | 2022-03-25 13:41:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 13:41:46 -0400 |
commit | 1fad1413fdae206d5d87cfba91395cf6a0ea3bdd (patch) | |
tree | 056b99d6699f89af67dc5c812674060540dbe60a | |
parent | 37bb6aa346e584a37366538b33cd906f4762b5ab (diff) | |
parent | 640c2d53a88f46e997d4e5a594cfc85a57e74d36 (diff) | |
download | podman-1fad1413fdae206d5d87cfba91395cf6a0ea3bdd.tar.gz podman-1fad1413fdae206d5d87cfba91395cf6a0ea3bdd.tar.bz2 podman-1fad1413fdae206d5d87cfba91395cf6a0ea3bdd.zip |
Merge pull request #13662 from giuseppe/fix-ci-test-run
test: fix podman run test as rootless
-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 f4a6e5733..81dcc4342 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -550,7 +550,7 @@ var _ = Describe("Podman run", func() { session = podmanTest.Podman([]string{"run", "--userns=keep-id", "--privileged", "--rm", ALPINE, "grep", "CapInh", "/proc/self/status"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(session.OutputToString()).To(ContainSubstring("0000000000000002")) + Expect(session.OutputToString()).To(ContainSubstring("0000000000000000")) session = podmanTest.Podman([]string{"run", "--userns=keep-id", "--cap-add=DAC_OVERRIDE", "--rm", ALPINE, "grep", "CapInh", "/proc/self/status"}) session.WaitWithDefaultTimeout() |