| 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 23295c6c017e7fb5f864e7991b4e7422373dd947..98853cf3d5c9e289429c20b7d376512c080f7100 100644
|
| --- a/tracing/tracing/base/iteration_helpers_test.html
|
| +++ b/tracing/tracing/base/iteration_helpers_test.html
|
| @@ -240,20 +240,6 @@ tr.b.unittest.testSuite(function() {
|
| });
|
| });
|
|
|
| - test('findFirstKeyInDictMatching', function() {
|
| - const dict = {a: 1, b: 2, c: 3};
|
| -
|
| - let k = tr.b.findFirstKeyInDictMatching(dict, function(key, value) {
|
| - return value === 2;
|
| - }, this);
|
| - assert.strictEqual(k, 'b');
|
| -
|
| - k = tr.b.findFirstKeyInDictMatching(dict, function(key, value) {
|
| - return false;
|
| - }, this);
|
| - assert.strictEqual(k, undefined);
|
| - });
|
| -
|
| test('mapValues', function() {
|
| const map = new Map();
|
| map.set('a', 1);
|
|
|