| Index: tools/perf/benchmarks/benchmark_unittest.py
|
| diff --git a/tools/perf/benchmarks/benchmark_unittest.py b/tools/perf/benchmarks/benchmark_unittest.py
|
| index d5aff221ef9a04e88cd5230a2bc196e23d9628de..c37d28b3267973b02b190b2876f98bbfb05f45f0 100644
|
| --- a/tools/perf/benchmarks/benchmark_unittest.py
|
| +++ b/tools/perf/benchmarks/benchmark_unittest.py
|
| @@ -36,10 +36,9 @@ def SmokeTestGenerator(benchmark):
|
| # pylint: disable=E1002
|
| ps = super(SinglePageBenchmark, self).CreatePageSet(options)
|
| for p in ps.pages:
|
| - if not p.disabled:
|
| - p.skip_waits = True
|
| - ps.pages = [p]
|
| - break
|
| + p.skip_waits = True
|
| + ps.pages = [p]
|
| + break
|
| return ps
|
|
|
| # Set the benchmark's default arguments.
|
|
|