diff options
author | Urvashi Mohnani <umohnani@redhat.com> | 2021-11-09 10:01:51 -0500 |
---|---|---|
committer | Urvashi Mohnani <umohnani@redhat.com> | 2021-11-10 14:48:08 -0500 |
commit | a55fdbb49c94038a8e9b88dd876b175e32292697 (patch) | |
tree | 96da6bffe083aa8c22e9d549c36b08b3bebb7f12 /test/e2e | |
parent | 4bf0146c2978960b8c4dc5a9844c4948effbcfd2 (diff) | |
download | podman-a55fdbb49c94038a8e9b88dd876b175e32292697.tar.gz podman-a55fdbb49c94038a8e9b88dd876b175e32292697.tar.bz2 podman-a55fdbb49c94038a8e9b88dd876b175e32292697.zip |
Print headers for system connection ls
Print out the headers even if the system connection list
is empty to match the behavior of other list commands.
Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/system_connection_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/system_connection_test.go b/test/e2e/system_connection_test.go index c0e29d525..76b442ce8 100644 --- a/test/e2e/system_connection_test.go +++ b/test/e2e/system_connection_test.go @@ -236,7 +236,7 @@ var _ = Describe("podman system connection", func() { session := podmanTest.Podman(cmd) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(session.Out.Contents()).Should(BeEmpty()) + Expect(len(session.OutputToStringArray())).Should(Equal(1)) Expect(session.Err.Contents()).Should(BeEmpty()) }) }) |