diff options
author | Matthew Heon <mheon@redhat.com> | 2019-04-09 14:00:21 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2019-04-10 09:55:55 -0400 |
commit | ba4a1bb9bd4a644ffa7b07d2a15ec9302d5d45ed (patch) | |
tree | 7c0fbe29535d360c5027554eda3e54b35efdd8c6 /test/e2e/rmi_test.go | |
parent | fe79bdd07e140176dc64ebef8da3eea2ae28b96b (diff) | |
download | podman-ba4a1bb9bd4a644ffa7b07d2a15ec9302d5d45ed.tar.gz podman-ba4a1bb9bd4a644ffa7b07d2a15ec9302d5d45ed.tar.bz2 podman-ba4a1bb9bd4a644ffa7b07d2a15ec9302d5d45ed.zip |
Print header for 'podman images' even with no images
Fixes #2877
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test/e2e/rmi_test.go')
-rw-r--r-- | test/e2e/rmi_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/rmi_test.go b/test/e2e/rmi_test.go index 78d175637..e034f24cf 100644 --- a/test/e2e/rmi_test.go +++ b/test/e2e/rmi_test.go @@ -270,7 +270,7 @@ RUN find $LOCAL fmt.Println(session.OutputToString()) Expect(session.ExitCode()).To(Equal(0)) - images := podmanTest.Podman([]string{"images", "--all"}) + images := podmanTest.Podman([]string{"images", "-aq"}) images.WaitWithDefaultTimeout() Expect(images.ExitCode()).To(Equal(0)) Expect(len(images.OutputToStringArray())).To(Equal(0)) |