| Index: tracing/tracing/metrics/system_health/scroll_power_metric_test.html
|
| diff --git a/tracing/tracing/metrics/system_health/scroll_power_metric_test.html b/tracing/tracing/metrics/system_health/scroll_power_metric_test.html
|
| index fd4b335813d4599f14779f70fae7ad1187bb2f99..b12c675499a60d127b29b0a8eb0a671a02c03a48 100644
|
| --- a/tracing/tracing/metrics/system_health/scroll_power_metric_test.html
|
| +++ b/tracing/tracing/metrics/system_health/scroll_power_metric_test.html
|
| @@ -17,13 +17,13 @@ found in the LICENSE file.
|
| function getMetricValueSum(values, name) {
|
| for (var value of values)
|
| if (value.name === name)
|
| - return value.numeric.sum;
|
| + return value.sum;
|
| }
|
|
|
| function getMetricValueAvg(values, name) {
|
| for (var value of values)
|
| if (value.name === name)
|
| - return value.numeric.average;
|
| + return value.average;
|
| }
|
|
|
| tr.b.unittest.testSuite(function() {
|
|
|