| Index: tracing/tracing/core/test_utils.html
 | 
| diff --git a/tracing/tracing/core/test_utils.html b/tracing/tracing/core/test_utils.html
 | 
| index 1b46de5c53f3235f974fe3c005771bc6f1fb4987..5a10257fb5af6148cd287a190cf8ebf8ca44c544 100644
 | 
| --- a/tracing/tracing/core/test_utils.html
 | 
| +++ b/tracing/tracing/core/test_utils.html
 | 
| @@ -409,7 +409,7 @@ tr.exportTo('tr.c', function() {
 | 
|      formatSingleLineList(list, itemCallback, opt_this) {
 | 
|        opt_this = opt_this || this;
 | 
|        this.push('[');
 | 
| -      tr.b.asArray(list).forEach(function(item, index) {
 | 
| +      Array.from(list).forEach(function(item, index) {
 | 
|          if (index > 0) this.push(', ');
 | 
|          itemCallback.call(opt_this, item, index);
 | 
|        }, this);
 | 
| @@ -420,7 +420,7 @@ tr.exportTo('tr.c', function() {
 | 
|        opt_this = opt_this || this;
 | 
|        this.push('[');
 | 
|        this.indentBlock(2, false /* don't break line */, function() {
 | 
| -        tr.b.asArray(list).forEach(function(item, index) {
 | 
| +        Array.from(list).forEach(function(item, index) {
 | 
|            if (index > 0) this.push(',');
 | 
|            this.breakLine();
 | 
|            itemCallback.call(opt_this, item, index);
 | 
| 
 |