Skip to content

Commit

Permalink
Merge pull request #15147 from vrothberg/4.0-fix-ci
Browse files Browse the repository at this point in the history
[v4.0-rhel] fix e2e sign tests
  • Loading branch information
openshift-merge-robot committed Aug 2, 2022
2 parents 3efe4c2 + 9beedca commit 33084eb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/pull_test.go
Expand Up @@ -405,14 +405,14 @@ var _ = Describe("Podman pull", func() {
})

It("podman pull check all tags", func() {
session := podmanTest.Podman([]string{"pull", "--all-tags", "k8s.gcr.io/pause"})
session := podmanTest.Podman([]string{"pull", "--all-tags", "quay.io/libpod/testdigest_v2s2"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))

session = podmanTest.Podman([]string{"images"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
Expect(len(session.OutputToStringArray())).To(BeNumerically(">", 4))
Expect(len(session.OutputToStringArray())).To(BeNumerically(">=", 2), "Expected at least two images")
})

It("podman pull from docker with nonexistent --authfile", func() {
Expand Down
Binary file modified test/e2e/sign/key.gpg
Binary file not shown.
Binary file modified test/e2e/sign/secret-key.asc
Binary file not shown.

0 comments on commit 33084eb

Please sign in to comment.