File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ test/e2e/apimachinery/garbage_collector.go: "should not delete dependents that h
25
25
test/e2e/apimachinery/garbage_collector.go: "should not be blocked by dependency circle"
26
26
test/e2e/apimachinery/namespace.go: "should ensure that all pods are removed when a namespace is deleted"
27
27
test/e2e/apimachinery/namespace.go: "should ensure that all services are removed when a namespace is deleted"
28
+ test/e2e/apimachinery/namespace.go: "should patch a Namespace"
28
29
test/e2e/apimachinery/resource_quota.go: "should create a ResourceQuota and ensure its status is promptly calculated."
29
30
test/e2e/apimachinery/resource_quota.go: "should create a ResourceQuota and capture the life of a service."
30
31
test/e2e/apimachinery/resource_quota.go: "should create a ResourceQuota and capture the life of a secret."
Original file line number Diff line number Diff line change @@ -249,7 +249,14 @@ var _ = SIGDescribe("Namespaces [Serial]", func() {
249
249
ginkgo .It ("should always delete fast (ALL of 100 namespaces in 150 seconds) [Feature:ComprehensiveNamespaceDraining]" ,
250
250
func () { extinguish (f , 100 , 0 , 150 ) })
251
251
252
- ginkgo .It ("should patch a Namespace" , func () {
252
+ /*
253
+ Release : v1.18
254
+ Testname: Namespace patching
255
+ Description: A Namespace is created.
256
+ The Namespace is patched.
257
+ The Namespace and MUST now include the new Label.
258
+ */
259
+ framework .ConformanceIt ("should patch a Namespace" , func () {
253
260
ginkgo .By ("creating a Namespace" )
254
261
namespaceName := "nspatchtest-" + string (uuid .NewUUID ())
255
262
ns , err := f .CreateNamespace (namespaceName , nil )
You can’t perform that action at this time.
0 commit comments