diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-12 17:17:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 17:17:40 -0400 |
commit | f83adcc57e567c89afac0bd73a0d8061123b2292 (patch) | |
tree | bcbe9d7a86ab5160a5cc6e1cf075f385046ecf8f /test | |
parent | 16f7a75033a036cf17d9e825caf318840f05e166 (diff) | |
parent | 19b9f4cb5dd1ea429ce3fbe818e146dd7762ea24 (diff) | |
download | podman-f83adcc57e567c89afac0bd73a0d8061123b2292.tar.gz podman-f83adcc57e567c89afac0bd73a0d8061123b2292.tar.bz2 podman-f83adcc57e567c89afac0bd73a0d8061123b2292.zip |
Merge pull request #13850 from mheon/bump_345
Bump to v3.4.5
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index e21b1dcf3..96d6d1425 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -454,7 +454,7 @@ var _ = Describe("Podman run", func() { session = podmanTest.Podman([]string{"run", "--rm", "--user", "root", ALPINE, "grep", "CapInh", "/proc/self/status"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(session.OutputToString()).To(ContainSubstring("00000000a80425fb")) + Expect(session.OutputToString()).To(ContainSubstring("0000000000000000")) session = podmanTest.Podman([]string{"run", "--rm", ALPINE, "grep", "CapBnd", "/proc/self/status"}) session.WaitWithDefaultTimeout() @@ -489,7 +489,7 @@ var _ = Describe("Podman run", func() { session = podmanTest.Podman([]string{"run", "--user=0:0", "--cap-add=DAC_OVERRIDE", "--rm", ALPINE, "grep", "CapInh", "/proc/self/status"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(session.OutputToString()).To(ContainSubstring("00000000a80425fb")) + Expect(session.OutputToString()).To(ContainSubstring("0000000000000000")) if os.Geteuid() > 0 { if os.Getenv("SKIP_USERNS") != "" { |