diff --git a/test/e2e/scalability/density.go b/test/e2e/scalability/density.go index c136b5c0cde..9b6ea6bf536 100644 --- a/test/e2e/scalability/density.go +++ b/test/e2e/scalability/density.go @@ -491,7 +491,7 @@ var _ = SIGDescribe("Density", func() { } isCanonical := func(test *Density) bool { - return test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && !test.quotas + return test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && test.quotas } for _, testArg := range densityTests { diff --git a/test/e2e/scalability/load.go b/test/e2e/scalability/load.go index 9246e2a9d63..067750b85c9 100644 --- a/test/e2e/scalability/load.go +++ b/test/e2e/scalability/load.go @@ -197,7 +197,7 @@ var _ = SIGDescribe("Load capacity", func() { } isCanonical := func(test *Load) bool { - return test.podsPerNode == 30 && test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && !test.quotas + return test.podsPerNode == 30 && test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && test.quotas } for _, testArg := range loadTests {