diff --git a/test/e2e/framework/framework.go b/test/e2e/framework/framework.go index 231927836c2..50d84d8cc33 100644 --- a/test/e2e/framework/framework.go +++ b/test/e2e/framework/framework.go @@ -643,8 +643,8 @@ func (kc *KubeConfig) FindCluster(name string) *KubeCluster { } // ConformanceIt is wrapper function for ginkgo It. Adds "[Conformance]" tag and makes static analysis easier. -func ConformanceIt(text string, body interface{}, timeout ...float64) bool { - return ginkgo.It(text+" [Conformance]", body, timeout...) +func ConformanceIt(text string, body interface{}) bool { + return ginkgo.It(text+" [Conformance]", body) } // PodStateVerification represents a verification of pod state.