diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go index 1d07f2035d4..0f7cc50a13f 100644 --- a/cmd/integration/integration.go +++ b/cmd/integration/integration.go @@ -19,7 +19,6 @@ limitations under the License. package main import ( - "encoding/json" "io/ioutil" "net" "net/http" @@ -238,7 +237,7 @@ func runReplicationControllerTest(c *client.Client) { glog.Fatalf("Unexpected error: %#v", err) } var controller api.ReplicationController - if err := json.Unmarshal(data, &controller); err != nil { + if err := api.Scheme.DecodeInto(data, &controller); err != nil { glog.Fatalf("Unexpected error: %#v", err) }