Merge pull request #114580 from pohly/e2e-ginkgo-timeout-fixes

e2e ginkgo timeout fixes, III
This commit is contained in:
Kubernetes Prow Robot
2023-01-30 13:48:48 -08:00
committed by GitHub
5 changed files with 17 additions and 23 deletions

View File

@@ -539,11 +539,6 @@ func (kc *KubeConfig) FindCluster(name string) *KubeCluster {
return nil
}
// ConformanceIt is wrapper function for ginkgo It. Adds "[Conformance]" tag and makes static analysis easier.
func ConformanceIt(text string, body interface{}) bool {
return ginkgo.It(text+" [Conformance]", ginkgo.Offset(1), body)
}
// PodStateVerification represents a verification of pod state.
// Any time you have a set of pods that you want to operate against or query,
// this struct can be used to declaratively identify those pods.