diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-24 09:07:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 09:07:02 +0100 |
commit | 4b014a3aecf9508ed83ae489e188721e6234ccd5 (patch) | |
tree | 8d5f445a67efd8ddc117237e05f111c0aad2b3c9 /test/e2e/pod_create_test.go | |
parent | 04be1e6485aec99d09edf3cdcf0769269ee42eb8 (diff) | |
parent | eb3708a5243378a659ca126b5d5c457b182d16a8 (diff) | |
download | podman-4b014a3aecf9508ed83ae489e188721e6234ccd5.tar.gz podman-4b014a3aecf9508ed83ae489e188721e6234ccd5.tar.bz2 podman-4b014a3aecf9508ed83ae489e188721e6234ccd5.zip |
Merge pull request #12398 from edsantiago/remove_betrue
continue e2e test cleanup
Diffstat (limited to 'test/e2e/pod_create_test.go')
-rw-r--r-- | test/e2e/pod_create_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/e2e/pod_create_test.go b/test/e2e/pod_create_test.go index 820b13a17..a3dde3650 100644 --- a/test/e2e/pod_create_test.go +++ b/test/e2e/pod_create_test.go @@ -756,7 +756,7 @@ ENTRYPOINT ["sleep","99999"] session := podmanTest.Podman([]string{"run", "--pod", podName, ALPINE, "cat", "/proc/self/uid_map"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - ok, _ := session.GrepString("500") + Expect(session.OutputToString()).To(ContainSubstring("500")) podName = "testPod-1" podCreate = podmanTest.Podman([]string{"pod", "create", "--userns=auto:size=3000", "--name", podName}) @@ -765,9 +765,7 @@ ENTRYPOINT ["sleep","99999"] session = podmanTest.Podman([]string{"run", "--pod", podName, ALPINE, "cat", "/proc/self/uid_map"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - ok, _ = session.GrepString("3000") - - Expect(ok).To(BeTrue()) + Expect(session.OutputToString()).To(ContainSubstring("3000")) }) It("podman pod create --userns=auto:uidmapping=", func() { |