Integration test was not decoding using api.Scheme
This commit is contained in:
@@ -19,7 +19,6 @@ limitations under the License.
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
@@ -238,7 +237,7 @@ func runReplicationControllerTest(c *client.Client) {
|
|||||||
glog.Fatalf("Unexpected error: %#v", err)
|
glog.Fatalf("Unexpected error: %#v", err)
|
||||||
}
|
}
|
||||||
var controller api.ReplicationController
|
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)
|
glog.Fatalf("Unexpected error: %#v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user