mirror of
https://github.com/containers/podman.git
synced 2025-10-19 12:12:36 +08:00
[v4.4.1-rhel] Change images_test expect from 10 to 9
I'm not exactly sure what is happening here, but this call ``` result := podmanTest.Podman([]string{"images", "-q", "-f", "reference=quay.io/libpod/*"}) ``` in the test/e2e/images-test.go in this test ``` It("podman images filter reference", func() ``` is now sending back 10 instead of 9 objects. This was a change that @edsantiago also made in https://github.com/containers/podman/pull/21356 After the other adjustments I made to the tests to right them, this seemed to be the last issue. Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
This commit is contained in:
@ -143,7 +143,7 @@ var _ = Describe("Podman images", func() {
|
||||
result := podmanTest.Podman([]string{"images", "-q", "-f", "reference=quay.io/libpod/*"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result).Should(Exit(0))
|
||||
Expect(result.OutputToStringArray()).To(HaveLen(10))
|
||||
Expect(result.OutputToStringArray()).To(HaveLen(9))
|
||||
|
||||
retalpine := podmanTest.Podman([]string{"images", "-f", "reference=*lpine*"})
|
||||
retalpine.WaitWithDefaultTimeout()
|
||||
|
Reference in New Issue
Block a user