diff --git a/test/extended/deployments/util.go b/test/extended/deployments/util.go index 8bd1ac932073..972a516b0172 100644 --- a/test/extended/deployments/util.go +++ b/test/extended/deployments/util.go @@ -162,10 +162,9 @@ func checkDeploymentInvariants(dc *deployapi.DeploymentConfig, rcs []*kapiv1.Rep running.Insert(k) } } - // FIXME: enable this check when we fix the controllers - //if running.Len() > 1 { - // return fmt.Errorf("found multiple running deployments: %v", running.List()) - //} + if running.Len() > 1 { + return fmt.Errorf("found multiple running deployments: %v", running.List()) + } sawStatus := sets.NewString() statuses := []string{} for _, rc := range rcs {