Skip to content

Commit

Permalink
Use quotas in default performance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarek committed Feb 26, 2018
1 parent 15b7d46 commit c3c1020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/scalability/density.go
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/scalability/load.go
Expand Up @@ -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 {
Expand Down

0 comments on commit c3c1020

Please sign in to comment.