Skip to content

Commit

Permalink
Workaround manifest inspect API problem
Browse files Browse the repository at this point in the history
See issue containers#8023

Signed-off-by: Chris Evich <[email protected]>
  • Loading branch information
cevich committed Oct 26, 2020
1 parent 27205a4 commit 2e71c53
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/e2e/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ var _ = Describe("Podman manifest", func() {
})

It("podman manifest inspect", func() {
session := podmanTest.Podman([]string{"manifest", "inspect", BB})
// Something NOT on docker hub
fqin := "k8s.gcr.io/pause@sha256:f78411e19d84a252e53bff71a4407a5686c46983a2c2eeed83929b888179acea"
session := podmanTest.Podman([]string{"manifest", "inspect", fqin})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))

session = podmanTest.PodmanNoCache([]string{"manifest", "inspect", "docker.io/library/busybox"})
session = podmanTest.PodmanNoCache([]string{"manifest", "inspect", fqin})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
})
Expand Down

0 comments on commit 2e71c53

Please sign in to comment.