Index: tools/perf/benchmarks/scheduler.py |
diff --git a/tools/perf/benchmarks/scheduler.py b/tools/perf/benchmarks/scheduler.py |
index 082372517ca24ef292f5ad58ee158ae4616f8e64..21a017a2544e7bfe73091f609c4c6407666d14c6 100644 |
--- a/tools/perf/benchmarks/scheduler.py |
+++ b/tools/perf/benchmarks/scheduler.py |
@@ -2,13 +2,13 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-from telemetry import test |
+from telemetry import benchmark |
from measurements import smoothness |
import page_sets |
-@test.Disabled('linux') # crbug.com/368767 |
-class SchedulerToughSchedulingCases(test.Test): |
+@benchmark.Disabled('linux') # crbug.com/368767 |
+class SchedulerToughSchedulingCases(benchmark.Benchmark): |
"""Measures rendering statistics while interacting with pages that have |
challenging scheduling properties. |
@@ -19,8 +19,8 @@ class SchedulerToughSchedulingCases(test.Test): |
# Pepper plugin is not supported on android. |
-@test.Disabled('android', 'win') # crbug.com/384733 |
-class SchedulerToughPepperCases(test.Test): |
+@benchmark.Disabled('android', 'win') # crbug.com/384733 |
+class SchedulerToughPepperCases(benchmark.Benchmark): |
"""Measures rendering statistics while interacting with pages that have |
pepper plugins""" |
test = smoothness.Smoothness |