aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkg/bisect/bisect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bisect/bisect.go b/pkg/bisect/bisect.go
index d412e6007..0454cf68c 100644
--- a/pkg/bisect/bisect.go
+++ b/pkg/bisect/bisect.go
@@ -455,7 +455,7 @@ func (env *env) test() (*testResult, error) {
}
numTests := MaxNumTests / 2
- if env.flaky && env.numTests == 0 {
+ if env.flaky || env.numTests == 0 {
// Use twice as many instances if the bug is flaky and during initial testing
// (as we don't know yet if it's flaky or not).
numTests *= 2