From be87a9331be5d67b906b23202fd205cf7773b41c Mon Sep 17 00:00:00 2001 From: wojtekt Date: Fri, 12 Mar 2021 08:15:00 +0100 Subject: [PATCH] Remove double-ownership of PV ResourceQuota tests --- test/e2e/apimachinery/resource_quota.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/apimachinery/resource_quota.go b/test/e2e/apimachinery/resource_quota.go index 8696b168173..93f78844c33 100644 --- a/test/e2e/apimachinery/resource_quota.go +++ b/test/e2e/apimachinery/resource_quota.go @@ -478,7 +478,7 @@ var _ = SIGDescribe("ResourceQuota", func() { Delete the PVC. Deletion MUST succeed and resource usage count against its PVC and storage object MUST be released from ResourceQuotaStatus of the ResourceQuota. [NotConformancePromotable] as test suite do not have any e2e at this moment which are explicitly verifying PV and PVC behaviour. */ - ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim. [sig-storage]", func() { + ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim", func() { ginkgo.By("Counting existing ResourceQuota") c, err := countResourceQuota(f.ClientSet, f.Namespace.Name) framework.ExpectNoError(err) @@ -528,7 +528,7 @@ var _ = SIGDescribe("ResourceQuota", func() { Delete the PVC. Deletion MUST succeed and resource usage count against PVC, storageClass and storage object MUST be released from ResourceQuotaStatus of the ResourceQuota. [NotConformancePromotable] as test suite do not have any e2e at this moment which are explicitly verifying PV and PVC behaviour. */ - ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim with a storage class. [sig-storage]", func() { + ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim with a storage class", func() { ginkgo.By("Counting existing ResourceQuota") c, err := countResourceQuota(f.ClientSet, f.Namespace.Name) framework.ExpectNoError(err)