| Index: tracing/tracing/value/ui/related_value_map_span_test.html
|
| diff --git a/tracing/tracing/value/ui/related_value_map_span_test.html b/tracing/tracing/value/ui/related_value_map_span_test.html
|
| index 8e9c026d15baed85c16c1289cbc8520c4dc89cf2..e348af617f13ce168d29db359fc8b14453a24bf6 100644
|
| --- a/tracing/tracing/value/ui/related_value_map_span_test.html
|
| +++ b/tracing/tracing/value/ui/related_value_map_span_test.html
|
| @@ -14,13 +14,11 @@ found in the LICENSE file.
|
| 'use strict';
|
|
|
| tr.b.unittest.testSuite(function() {
|
| - var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
|
| - tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
|
| - 10);
|
| -
|
| test('instantiate_RelatedValueMap', function() {
|
| - var aValue = new tr.v.NumericValue('a', TEST_NUMERIC_BUILDER.build());
|
| - var bValue = new tr.v.NumericValue('b', TEST_NUMERIC_BUILDER.build());
|
| + var aValue = new tr.v.NumericValue('a', new tr.v.Histogram(
|
| + tr.v.Unit.byName.unitlessNumber));
|
| + var bValue = new tr.v.NumericValue('b', new tr.v.Histogram(
|
| + tr.v.Unit.byName.unitlessNumber));
|
| var diagnostic = new tr.v.d.RelatedValueMap();
|
| diagnostic.set('foo', aValue);
|
| diagnostic.set('bar', bValue);
|
|
|