| 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..0d157b0283fdc80c1a10341e7592a3e9a41fe536 100644
|
| --- a/tracing/tracing/base/iteration_helpers_test.html
|
| +++ b/tracing/tracing/base/iteration_helpers_test.html
|
| @@ -254,22 +254,6 @@ tr.b.unittest.testSuite(function() {
|
| });
|
| });
|
|
|
| - test('identity', function() {
|
| - // Undefined value.
|
| - assert.isUndefined(tr.b.identity(undefined));
|
| -
|
| - // Primitive value.
|
| - assert.strictEqual(tr.b.identity(-273.15), -273.15);
|
| -
|
| - // List.
|
| - const list = ['list', 'with', 1, undefined, 'value'];
|
| - assert.strictEqual(tr.b.identity(list), list);
|
| -
|
| - // Object.
|
| - const object = {'hasItems': true};
|
| - assert.strictEqual(tr.b.identity(object), object);
|
| - });
|
| -
|
| test('findFirstKeyInDictMatching', function() {
|
| const dict = {a: 1, b: 2, c: 3};
|
|
|
|
|