Commit a66b438b authored by David Eads's avatar David Eads

remove dead protobuf tags from test

parent 963adda7
...@@ -732,14 +732,14 @@ func getEtcdBucket(path string) string { ...@@ -732,14 +732,14 @@ func getEtcdBucket(path string) string {
// stable fields to compare as a sanity check // stable fields to compare as a sanity check
type metaObject struct { type metaObject struct {
// all of type meta // all of type meta
Kind string `json:"kind,omitempty" protobuf:"bytes,1,opt,name=kind"` Kind string `json:"kind,omitempty"`
APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,2,opt,name=apiVersion"` APIVersion string `json:"apiVersion,omitempty"`
// parts of object meta // parts of object meta
Metadata struct { Metadata struct {
Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"` Name string `json:"name,omitempty"`
Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"` Namespace string `json:"namespace,omitempty"`
} `json:"metadata,omitempty" protobuf:"bytes,3,opt,name=metadata"` } `json:"metadata,omitempty"`
} }
func (obj *metaObject) getGVK() schema.GroupVersionKind { func (obj *metaObject) getGVK() schema.GroupVersionKind {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment