diff --git a/test/e2e/common/node/pods.go b/test/e2e/common/node/pods.go index 4edde25234d..ff97f9ebb06 100644 --- a/test/e2e/common/node/pods.go +++ b/test/e2e/common/node/pods.go @@ -22,12 +22,13 @@ import ( "encoding/json" "fmt" "io" - "k8s.io/client-go/util/retry" "runtime/debug" "strconv" "strings" "time" + "k8s.io/client-go/util/retry" + "golang.org/x/net/websocket" v1 "k8s.io/api/core/v1" @@ -771,8 +772,7 @@ var _ = SIGDescribe("Pods", func() { } }) - // TODO(freehan): label the test to be [NodeConformance] after tests are proven to be stable. - ginkgo.It("should support pod readiness gates [NodeFeature:PodReadinessGate]", func() { + ginkgo.It("should support pod readiness gates [NodeConformance]", func() { podName := "pod-ready" readinessGate1 := "k8s.io/test-condition1" readinessGate2 := "k8s.io/test-condition2"