diff --git a/test/e2e/horizontal_pod_autoscaling.go b/test/e2e/horizontal_pod_autoscaling.go index 424e99a8661..135daaadb04 100644 --- a/test/e2e/horizontal_pod_autoscaling.go +++ b/test/e2e/horizontal_pod_autoscaling.go @@ -31,14 +31,14 @@ const ( subresource = "scale" ) -var _ = Describe("Horizontal pod autoscaling (scale resource: CPU) [Skipped]", func() { +var _ = Describe("Horizontal pod autoscaling (scale resource: CPU) [Feature:Autoscaling]", func() { var rc *ResourceConsumer f := NewFramework("horizontal-pod-autoscaling") titleUp := "Should scale from 1 pod to 3 pods and from 3 to 5" titleDown := "Should scale from 5 pods to 3 pods and from 3 to 1" - Describe("Deployment [Feature:Deployment]", func() { + Describe("Deployment", func() { // CPU tests via deployments It(titleUp, func() { scaleUp("deployment", kindDeployment, rc, f) @@ -48,7 +48,7 @@ var _ = Describe("Horizontal pod autoscaling (scale resource: CPU) [Skipped]", f }) }) - Describe("ReplicationController [Feature:Autoscaling]", func() { + Describe("ReplicationController", func() { // CPU tests via replication controllers It(titleUp, func() { scaleUp("rc", kindRC, rc, f)