summaryrefslogtreecommitdiff
path: root/test/e2e/images_test.go
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/e2e/images_test.go
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/e2e/images_test.go')
-rw-r--r--test/e2e/images_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go
index b69d2597e..281b2c313 100644
--- a/test/e2e/images_test.go
+++ b/test/e2e/images_test.go
@@ -278,7 +278,7 @@ WORKDIR /test
It("podman images sort by values", func() {
sortValueTest := func(value string, result int, format string) []string {
f := fmt.Sprintf("{{.%s}}", format)
- session := podmanTest.Podman([]string{"images", "--sort", value, "--format", f})
+ session := podmanTest.Podman([]string{"images", "--noheading", "--sort", value, "--format", f})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(result))