summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-08 12:40:23 -0400
committerGitHub <noreply@github.com>2022-04-08 12:40:23 -0400
commit343778f61ac38f0597cfbad38ace644035340f22 (patch)
tree0966f4a85c2d0ae975c5783051ca237f863c2408 /test/system
parentcdbc33112ef6407db1292f0a40778e6ac1d8996e (diff)
parent0cebd158b6d8da1828b1255982e27fe9224310d0 (diff)
downloadpodman-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')
-rw-r--r--test/system/200-pod.bats2
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"