summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/metrics/smoothness.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/metrics/smoothness.py b/tools/perf/metrics/smoothness.py
index 65ddfe2..4280f37 100644
--- a/tools/perf/metrics/smoothness.py
+++ b/tools/perf/metrics/smoothness.py
@@ -125,7 +125,7 @@ class SmoothnessMetric(Metric):
# Absolute discrepancy of frame time stamps.
frame_discrepancy = statistics.TimestampsDiscrepancy(
self._stats.frame_timestamps)
- results.Add('jank', '', round(frame_discrepancy, 4))
+ results.Add('jank', 'ms', round(frame_discrepancy, 4))
# Are we hitting 60 fps for 95 percent of all frames?
# We use 19ms as a somewhat looser threshold, instead of 1000.0/60.0.