summaryrefslogtreecommitdiff
path: root/test/system/010-images.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-12-02 20:25:54 +0100
committerGitHub <noreply@github.com>2020-12-02 20:25:54 +0100
commitd45676549d67033364f6777765054073036cfc32 (patch)
treeb5b821f988f6ee6a78919d48824dc66f90e525bd /test/system/010-images.bats
parent2e55543ccab5ece6b005dbbc026774b9e0de665c (diff)
parent2a02833e9fe533d3e3c6bb05edeec769638a18af (diff)
downloadpodman-d45676549d67033364f6777765054073036cfc32.tar.gz
podman-d45676549d67033364f6777765054073036cfc32.tar.bz2
podman-d45676549d67033364f6777765054073036cfc32.zip
Merge pull request #8392 from jwhonce/wip/report
Fix `podman images...` missing headers in table templates
Diffstat (limited to 'test/system/010-images.bats')
-rw-r--r--test/system/010-images.bats13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/system/010-images.bats b/test/system/010-images.bats
index ee6da30ec..76caf282b 100644
--- a/test/system/010-images.bats
+++ b/test/system/010-images.bats
@@ -199,9 +199,16 @@ Labels.created_at | 20[0-9-]\\\+T[0-9:]\\\+Z
local format=$2
run_podman images --sort repository --format "$format"
- _check_line 0 ${aaa_name} ${aaa_tag}
- _check_line 1 "${PODMAN_TEST_IMAGE_REGISTRY}/${PODMAN_TEST_IMAGE_USER}/${PODMAN_TEST_IMAGE_NAME}" "${PODMAN_TEST_IMAGE_TAG}"
- _check_line 2 ${zzz_name} ${zzz_tag}
+
+ line_no=0
+ if [[ $format == table* ]]; then
+ # skip headers from table command
+ line_no=1
+ fi
+
+ _check_line $line_no ${aaa_name} ${aaa_tag}
+ _check_line $((line_no+1)) "${PODMAN_TEST_IMAGE_REGISTRY}/${PODMAN_TEST_IMAGE_USER}/${PODMAN_TEST_IMAGE_NAME}" "${PODMAN_TEST_IMAGE_TAG}"
+ _check_line $((line_no+2)) ${zzz_name} ${zzz_tag}
}
# Begin the test: tag $IMAGE with both the given names