diff --git a/test/e2e/scalability/density.go b/test/e2e/scalability/density.go index 9c8784b0d35..469c3c8ad8e 100644 --- a/test/e2e/scalability/density.go +++ b/test/e2e/scalability/density.go @@ -487,7 +487,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 69f82bd4e26..a717929c8c0 100644 --- a/test/e2e/scalability/load.go +++ b/test/e2e/scalability/load.go @@ -196,7 +196,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 {