| Index: tools/perf/benchmarks/jsgamebench.py
|
| diff --git a/tools/perf/benchmarks/jsgamebench.py b/tools/perf/benchmarks/jsgamebench.py
|
| index 762e8ba49642d708df550ce6e775b1b1f510218c..8d1c8c16c8a26783dde0c19b50f277e4d802336e 100644
|
| --- a/tools/perf/benchmarks/jsgamebench.py
|
| +++ b/tools/perf/benchmarks/jsgamebench.py
|
| @@ -12,7 +12,7 @@ The benchmark is kept here for historical purposes but is disabled on the bots.
|
|
|
| import os
|
|
|
| -from telemetry import test
|
| +from telemetry import benchmark
|
| from telemetry.page import page_measurement
|
| from telemetry.page import page_set
|
|
|
| @@ -31,8 +31,8 @@ class _JsgamebenchMeasurement(page_measurement.PageMeasurement):
|
| results.Add('Score', 'score (bigger is better)', result)
|
|
|
|
|
| -@test.Disabled
|
| -class Jsgamebench(test.Test):
|
| +@benchmark.Disabled
|
| +class Jsgamebench(benchmark.Benchmark):
|
| """Counts how many animating sprites can move around on the screen at once."""
|
| test = _JsgamebenchMeasurement
|
|
|
|
|