mirror of
https://github.com/containers/podman.git
synced 2025-06-17 23:20:59 +08:00
Same thing, for BeNumerically("==", 0)
sed -i -e 's/Expect(len(\(.*\)))\.To(BeNumerically("==", 0))/Expect(\1).To(BeEmpty())/' test/e2e/*.go Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -149,7 +149,7 @@ RUN echo test
|
||||
session := podmanTest.Podman([]string{"image", "diff", ALPINE, ALPINE})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
Expect(len(session.OutputToStringArray())).To(BeNumerically("==", 0))
|
||||
Expect(session.OutputToStringArray()).To(BeEmpty())
|
||||
})
|
||||
|
||||
It("podman diff container and image with same name", func() {
|
||||
|
Reference in New Issue
Block a user