| Index: tracing/tracing/base/iteration_helpers_test.html
|
| diff --git a/tracing/tracing/base/iteration_helpers_test.html b/tracing/tracing/base/iteration_helpers_test.html
|
| index 5d90b20497245061c23d4766aedaa28268bc1428..28cea83744b65d8836728a6b3406847d13aef0ad 100644
|
| --- a/tracing/tracing/base/iteration_helpers_test.html
|
| +++ b/tracing/tracing/base/iteration_helpers_test.html
|
| @@ -284,18 +284,6 @@ tr.b.unittest.testSuite(function() {
|
| assert.strictEqual(k, undefined);
|
| });
|
|
|
| - test('dictionaryContainsValue', function() {
|
| - const emptyDict = {};
|
| - assert.isFalse(tr.b.dictionaryContainsValue(emptyDict, 'missing'));
|
| -
|
| - const nonEmptyDict = {a: 42, b: 'value'};
|
| - assert.isTrue(tr.b.dictionaryContainsValue(nonEmptyDict, 42));
|
| - assert.isTrue(tr.b.dictionaryContainsValue(nonEmptyDict, 'value'));
|
| - assert.isFalse(tr.b.dictionaryContainsValue(nonEmptyDict, 'a'));
|
| - assert.isFalse(tr.b.dictionaryContainsValue(nonEmptyDict, 'b'));
|
| - assert.isFalse(tr.b.dictionaryContainsValue(nonEmptyDict, 'missing'));
|
| - });
|
| -
|
| test('mapValues', function() {
|
| const map = new Map();
|
| map.set('a', 1);
|
|
|