diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-21 18:18:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 18:18:55 -0400 |
commit | 78ccd833906087d171f608d66a0384135dc80717 (patch) | |
tree | c357edbffece305a9aee0d977aca73ea8a27c31b /test/system | |
parent | d5f568efe37bbfdbca4b5e36afb7568c7eac3740 (diff) | |
parent | 8080a5f8ec8ad798eab194ef495a68824bd2e802 (diff) | |
download | podman-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.bats | 2 |
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" |