ginkgo.It doesn't have a timeout arg anymore

Signed-off-by: Dave Chen <dave.chen@arm.com>
This commit is contained in:
Dave Chen 2022-03-29 14:52:14 +08:00
parent 05c0f4a298
commit 2eb8e9e81f

View File

@ -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.