aboutsummaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-21 18:18:55 -0400
committerGitHub <noreply@github.com>2022-04-21 18:18:55 -0400
commit78ccd833906087d171f608d66a0384135dc80717 (patch)
treec357edbffece305a9aee0d977aca73ea8a27c31b /test/system
parentd5f568efe37bbfdbca4b5e36afb7568c7eac3740 (diff)
parent8080a5f8ec8ad798eab194ef495a68824bd2e802 (diff)
downloadpodman-78ccd833906087d171f608d66a0384135dc80717.tar.gz
podman-78ccd833906087d171f608d66a0384135dc80717.tar.bz2
podman-78ccd833906087d171f608d66a0384135dc80717.zip
Merge pull request #13963 from flouthoc/revert-entrypoint-compat
Revert "container,inspect: convert Entrypoint to 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 e6f4ecdbc..f5fe41924 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"