From a87db8834fd02950fa8cfd54d2ecee13ddee0a0e Mon Sep 17 00:00:00 2001 From: Chao Xu Date: Fri, 9 Oct 2015 15:30:25 -0700 Subject: [PATCH] manual fix testapi --- pkg/api/testapi/testapi.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/api/testapi/testapi.go b/pkg/api/testapi/testapi.go index fd5c35507ee..e0a73bd0bda 100644 --- a/pkg/api/testapi/testapi.go +++ b/pkg/api/testapi/testapi.go @@ -33,9 +33,9 @@ import ( ) var ( - Groups = make(map[string]TestGroup) - Default TestGroup - Experimental TestGroup + Groups = make(map[string]TestGroup) + Default TestGroup + Extensions TestGroup ) type TestGroup struct { @@ -71,7 +71,7 @@ func init() { } Default = Groups[""] - Experimental = Groups["extensions"] + Extensions = Groups["extensions"] } // Version returns the API version to test against, as set by the KUBE_TEST_API env var.