move deployment PodTemplate to be not a pointer

This commit is contained in:
Mike Danese
2015-10-26 16:20:43 -07:00
parent d5e680afbb
commit b0a41108af
13 changed files with 38 additions and 35 deletions

View File

@@ -503,7 +503,7 @@ func TestDescribeDeployment(t *testing.T) {
Namespace: "foo",
},
Spec: extensions.DeploymentSpec{
Template: &api.PodTemplateSpec{},
Template: api.PodTemplateSpec{},
},
})
c := &describeClient{T: t, Namespace: "foo", Interface: fake}