diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-08 12:40:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 12:40:23 -0400 |
commit | 343778f61ac38f0597cfbad38ace644035340f22 (patch) | |
tree | 0966f4a85c2d0ae975c5783051ca237f863c2408 /test/system/200-pod.bats | |
parent | cdbc33112ef6407db1292f0a40778e6ac1d8996e (diff) | |
parent | 0cebd158b6d8da1828b1255982e27fe9224310d0 (diff) | |
download | podman-343778f61ac38f0597cfbad38ace644035340f22.tar.gz podman-343778f61ac38f0597cfbad38ace644035340f22.tar.bz2 podman-343778f61ac38f0597cfbad38ace644035340f22.zip |
Merge pull request #13811 from flouthoc/container_inspect_entrypoint
container,inspect: convert `Entrypoint` to an array instead of a string
Diffstat (limited to 'test/system/200-pod.bats')
-rw-r--r-- | test/system/200-pod.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats index f5fe41924..e6f4ecdbc 100644 --- a/test/system/200-pod.bats +++ b/test/system/200-pod.bats @@ -234,7 +234,7 @@ EOF local infra_cid="$output" # confirm that entrypoint is what we set run_podman container inspect --format '{{.Config.Entrypoint}}' $infra_cid - is "$output" "$infra_command" "infra-command took effect" + is "$output" "[$infra_command]" "infra-command took effect" # confirm that infra container name is set run_podman container inspect --format '{{.Name}}' $infra_cid is "$output" "$infra_name" "infra-name took effect" |