diff options
Diffstat (limited to 'test/e2e/exists_test.go')
-rw-r--r-- | test/e2e/exists_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/exists_test.go b/test/e2e/exists_test.go index 1076dfc61..7ff5d4207 100644 --- a/test/e2e/exists_test.go +++ b/test/e2e/exists_test.go @@ -23,7 +23,6 @@ var _ = Describe("Podman image|container exists", func() { } podmanTest = PodmanTestCreate(tempdir) podmanTest.Setup() - podmanTest.RestoreAllArtifacts() }) AfterEach(func() { @@ -39,6 +38,7 @@ var _ = Describe("Podman image|container exists", func() { Expect(session).Should(Exit(0)) }) It("podman image exists in local storage by short name", func() { + Skip("FIXME-8165: shortnames don't seem to work with quay (#8176)") session := podmanTest.Podman([]string{"image", "exists", "alpine"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) |