diff --git a/test/e2e/scalability/density.go b/test/e2e/scalability/density.go index 469c3c8ad8e..9c8784b0d35 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 b3d6c242382..b56dda815d2 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 {