diff options
author | Aditya R <arajan@redhat.com> | 2022-04-08 17:49:08 +0530 |
---|---|---|
committer | Aditya R <arajan@redhat.com> | 2022-04-08 18:43:37 +0530 |
commit | 0cebd158b6d8da1828b1255982e27fe9224310d0 (patch) | |
tree | c479b4c282323b8a800d0d3a336e0e1f2894f072 /test/system | |
parent | 0c9c3e6714905fbb493e0b634e09b56ae096592e (diff) | |
download | podman-0cebd158b6d8da1828b1255982e27fe9224310d0.tar.gz podman-0cebd158b6d8da1828b1255982e27fe9224310d0.tar.bz2 podman-0cebd158b6d8da1828b1255982e27fe9224310d0.zip |
container,inspect: convert Entrypoint to array instead of a string
Convert container entrypoint from string to an array inorder to make
sure there is parity between `podman inspect` and `docker inspect`
Signed-off-by: Aditya R <arajan@redhat.com>
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 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" |