Drop NewDefultGroupVersionFramework in favor of client automatically handling proper GroupVersions

This commit is contained in:
Maciej Szulik
2017-02-27 18:21:23 +01:00
parent 7cba9d9c92
commit 6c0cd24865
3 changed files with 2 additions and 9 deletions

View File

@@ -108,12 +108,6 @@ func NewDefaultFramework(baseName string) *Framework {
return NewFramework(baseName, options, nil)
}
func NewDefaultGroupVersionFramework(baseName string, groupVersion schema.GroupVersion) *Framework {
f := NewDefaultFramework(baseName)
f.Options.GroupVersion = &groupVersion
return f
}
func NewFramework(baseName string, options FrameworkOptions, client clientset.Interface) *Framework {
f := &Framework{
BaseName: baseName,