Commit 61ddda0b authored by Brian Grant's avatar Brian Grant

Merge pull request #6431 from ghodss/pin-patch-test

Temporarily skip PATCH integration tests for v1beta3
parents b0b6418c 8a62b0d9
...@@ -598,6 +598,10 @@ func runAtomicPutTest(c *client.Client) { ...@@ -598,6 +598,10 @@ func runAtomicPutTest(c *client.Client) {
} }
func runPatchTest(c *client.Client) { func runPatchTest(c *client.Client) {
if c.APIVersion() != "v1beta1" {
glog.Info("Skipping PATCH tests for non-v1beta1 for now.")
return
}
name := "patchservice" name := "patchservice"
resource := "services" resource := "services"
svcBody := api.Service{ svcBody := api.Service{
......
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