aboutsummaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-11-18 09:09:53 -0700
committerMatthew Heon <mheon@redhat.com>2020-12-07 15:14:49 -0500
commit3f6197e3d2a55ab843dee7be922706a079d875a4 (patch)
tree08edd76b705389e8ee9c13e9bfd6e8b7ac006371 /test/e2e
parentfa9ad1671e9b3433c6b5fb0c393cebca70a0811b (diff)
downloadpodman-3f6197e3d2a55ab843dee7be922706a079d875a4.tar.gz
podman-3f6197e3d2a55ab843dee7be922706a079d875a4.tar.bz2
podman-3f6197e3d2a55ab843dee7be922706a079d875a4.zip
Fix `podman images...` missing headers in table templates
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'test/e2e')
-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 4c65a85d5..e045718ac 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))