diff options
author | Ed Santiago <santiago@redhat.com> | 2021-12-01 08:46:12 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-12-02 07:54:53 -0700 |
commit | 7c6123f8e131d1083af065cd4620dd5c29b66048 (patch) | |
tree | 4062ec966c7a379ce0a2bf2aee732e8db2f9542e /test/e2e/system_reset_test.go | |
parent | c676495468397b16e228a37c45c3e02bb9832779 (diff) | |
download | podman-7c6123f8e131d1083af065cd4620dd5c29b66048.tar.gz podman-7c6123f8e131d1083af065cd4620dd5c29b66048.tar.bz2 podman-7c6123f8e131d1083af065cd4620dd5c29b66048.zip |
Use BeEmpty() instead of len(x).To(Equal(0))
sed -i -e 's/Expect(len(\(.*\)))\.To(Equal(0))/Expect(\1).To(BeEmpty())/' test/e2e/*.go
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/e2e/system_reset_test.go')
-rw-r--r-- | test/e2e/system_reset_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/system_reset_test.go b/test/e2e/system_reset_test.go index 93ab166cd..42c6e618f 100644 --- a/test/e2e/system_reset_test.go +++ b/test/e2e/system_reset_test.go @@ -74,11 +74,11 @@ var _ = Describe("podman system reset", func() { session = podmanTest.Podman([]string{"volume", "ls"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(len(session.OutputToStringArray())).To(Equal(0)) + Expect(session.OutputToStringArray()).To(BeEmpty()) session = podmanTest.Podman([]string{"container", "ls", "-q"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - Expect(len(session.OutputToStringArray())).To(Equal(0)) + Expect(session.OutputToStringArray()).To(BeEmpty()) }) }) |