diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-18 17:17:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 17:17:26 +0000 |
commit | 5e4d72943448d0e7ff5ea94c133e08fdaf0a5969 (patch) | |
tree | d8f32488e387734e7422dd6aa0094df3d72fd270 /test/system/170-run-userns.bats | |
parent | d890c4d98edcd2ed6f5f26bb19ed2282cea1cb46 (diff) | |
parent | 1aafb01a9950c5d2c46278cf22488b9acfeaab00 (diff) | |
download | podman-5e4d72943448d0e7ff5ea94c133e08fdaf0a5969.tar.gz podman-5e4d72943448d0e7ff5ea94c133e08fdaf0a5969.tar.bz2 podman-5e4d72943448d0e7ff5ea94c133e08fdaf0a5969.zip |
Merge pull request #14890 from rhatdan/VENDOR
Vendor in containers/(storage,image, common, buildah)
Diffstat (limited to 'test/system/170-run-userns.bats')
-rw-r--r-- | test/system/170-run-userns.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/170-run-userns.bats b/test/system/170-run-userns.bats index 84788a7f4..2ad9eb0b8 100644 --- a/test/system/170-run-userns.bats +++ b/test/system/170-run-userns.bats @@ -124,7 +124,7 @@ EOF run_podman rm -t 0 --force ${cid} else run_podman 125 run -d --userns=nomap $IMAGE sleep 100 - is "${output}" "Error: nomap is only supported in rootless mode" "Container should fail to start since nomap is not suppored in rootful mode" + is "${output}" "Error: nomap is only supported in rootless mode" "Container should fail to start since nomap is not supported in rootful mode" fi } @@ -135,6 +135,6 @@ EOF is "${output}" "$user" "Container should run as the current user" else run_podman 125 run --rm --userns=keep-id $IMAGE id -u - is "${output}" "Error: keep-id is only supported in rootless mode" "Container should fail to start since keep-id is not suppored in rootful mode" + is "${output}" "Error: keep-id is only supported in rootless mode" "Container should fail to start since keep-id is not supported in rootful mode" fi } |