summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-05-20 16:13:18 -0400
committerGitHub <noreply@github.com>2021-05-20 16:13:18 -0400
commit5d1e39b456557a7f50ccda576fb0ecb6043a5bc3 (patch)
tree216cfa1539cd7a71a96cdb00f5be4c64ba14b56e /test/e2e
parentfe0595683a05c0f0307e07f0cce29f6ae0b3d310 (diff)
parent32dd933a7e312215c55bf05628be34b3ce9fbdf5 (diff)
downloadpodman-5d1e39b456557a7f50ccda576fb0ecb6043a5bc3.tar.gz
podman-5d1e39b456557a7f50ccda576fb0ecb6043a5bc3.tar.bz2
podman-5d1e39b456557a7f50ccda576fb0ecb6043a5bc3.zip
Merge pull request #10415 from mheon/32_vendor
[v3.2] Update vendors of container projects
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/run_security_labels_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_security_labels_test.go b/test/e2e/run_security_labels_test.go
index b714df323..ae86bb690 100644
--- a/test/e2e/run_security_labels_test.go
+++ b/test/e2e/run_security_labels_test.go
@@ -45,7 +45,7 @@ var _ = Describe("Podman generate kube", func() {
ctr := inspect.InspectContainerToJSON()
caps := strings.Join(ctr[0].EffectiveCaps, ",")
- Expect(caps).To(Equal("CAP_SETUID,CAP_SETGID"))
+ Expect(caps).To(Equal("CAP_SETGID,CAP_SETUID"))
})
It("podman bad security labels", func() {
@@ -109,7 +109,7 @@ var _ = Describe("Podman generate kube", func() {
ctr := inspect.InspectContainerToJSON()
caps := strings.Join(ctr[0].EffectiveCaps, ",")
- Expect(caps).To(Equal("CAP_SYS_CHROOT,CAP_SETUID"))
+ Expect(caps).To(Equal("CAP_SETUID,CAP_SYS_CHROOT"))
})