Remove KubeDescribe from SIGDescribe calls

This commit is contained in:
wojtekt
2021-02-25 14:05:22 +01:00
parent cd6712518b
commit cad9957f95
10 changed files with 960 additions and 964 deletions

View File

@@ -16,9 +16,9 @@ limitations under the License.
package node
import "k8s.io/kubernetes/test/e2e/framework"
import "github.com/onsi/ginkgo"
// SIGDescribe annotates the test with the SIG label.
func SIGDescribe(text string, body func()) bool {
return framework.KubeDescribe("[sig-node] "+text, body)
return ginkgo.Describe("[sig-node] "+text, body)
}