From 0f8530b1eea4e7dd618d0ebf47e85b99736833c4 Mon Sep 17 00:00:00 2001 From: Matt Heon Date: Tue, 7 Mar 2023 13:30:18 -0500 Subject: [PATCH] Remove test for pod/container name global uniqueness We're removing this constraint from the database, so we should not be verifying it in CI anymore. Signed-off-by: Matt Heon --- test/e2e/pod_create_test.go | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/test/e2e/pod_create_test.go b/test/e2e/pod_create_test.go index f692566aae..0b1551d138 100644 --- a/test/e2e/pod_create_test.go +++ b/test/e2e/pod_create_test.go @@ -76,20 +76,6 @@ var _ = Describe("Podman pod create", func() { Expect(check.OutputToStringArray()).To(HaveLen(1)) }) - It("podman create pod with same name as ctr", func() { - name := "test" - session := podmanTest.Podman([]string{"create", "--name", name, ALPINE, "ls"}) - session.WaitWithDefaultTimeout() - Expect(session).Should(Exit(0)) - - _, ec, _ := podmanTest.CreatePod(map[string][]string{"--name": {name}}) - Expect(ec).To(Not(Equal(0))) - - check := podmanTest.Podman([]string{"pod", "ps", "-q"}) - check.WaitWithDefaultTimeout() - Expect(check.OutputToStringArray()).To(BeEmpty()) - }) - It("podman create pod without network portbindings", func() { name := "test" session := podmanTest.Podman([]string{"pod", "create", "--name", name})