diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-28 14:26:43 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-28 15:17:00 -0500 |
commit | 517bc28360ba6417d5333720f03f010514862ec3 (patch) | |
tree | 0bd8db7e573aad64d2687f047e6606e8c8df77f0 /test/apiv2/10-images.at | |
parent | 23be7b50490ac01c31af3266490276dd46ec23c3 (diff) | |
download | podman-517bc28360ba6417d5333720f03f010514862ec3.tar.gz podman-517bc28360ba6417d5333720f03f010514862ec3.tar.bz2 podman-517bc28360ba6417d5333720f03f010514862ec3.zip |
system tests must pass
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/apiv2/10-images.at')
-rw-r--r-- | test/apiv2/10-images.at | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/apiv2/10-images.at b/test/apiv2/10-images.at index 42ec028d0..1c8da0c2f 100644 --- a/test/apiv2/10-images.at +++ b/test/apiv2/10-images.at @@ -7,15 +7,15 @@ podman pull -q $IMAGE t GET libpod/images/json 200 \ - .[0].Id~[0-9a-f]\\{64\\} -iid=$(jq -r '.[0].Id' <<<"$output") + .[0].ID~[0-9a-f]\\{64\\} +iid=$(jq -r '.[0].ID' <<<"$output") t GET libpod/images/$iid/exists 204 t GET libpod/images/$PODMAN_TEST_IMAGE_NAME/exists 204 # FIXME: compare to actual podman info t GET libpod/images/json 200 \ - .[0].Id=${iid} + .[0].ID=${iid} t GET libpod/images/$iid/json 200 \ .Id=$iid \ |