File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
front_end/panels/timeline/utils Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ describeWithEnvironment('AICallTree', () => {
7070 const expectedData = '\n' +
7171 `
7272
73- # All URL #s :
73+ # All URLs :
7474
7575 * 0: node:internal/main/run_main_module
7676 * 1: node:internal/modules/run_main
@@ -104,7 +104,7 @@ describeWithEnvironment('AICallTree', () => {
104104 const expectedData = '\n' +
105105 `
106106
107- # All URL #s :
107+ # All URLs :
108108
109109 * 0: https://www.gstatic.com/devrel-devsite/prod/vafe2e13ca17bb026e70df42a2ead1c8192750e86a12923a88eda839025dabf95/js/devsite_app_module.js
110110
@@ -242,7 +242,7 @@ describeWithEnvironment('AICallTree', () => {
242242
243243 // Entry Format: `id;name;duration;selfTime;urlIndex;childRange;[S]
244244 const expectedData = `
245- # All URL #s :
245+ # All URLs :
246246
247247 * 0: https://www.gstatic.com/devrel-devsite/prod/vafe2e13ca17bb026e70df42a2ead1c8192750e86a12923a88eda839025dabf95/js/devsite_app_module.js
248248
@@ -269,7 +269,7 @@ describeWithEnvironment('AICallTree', () => {
269269
270270 // Entry Format: `id;name;duration;selfTime;urlIndex;childRange;[S]
271271 const expectedData = `
272- # All URL #s :
272+ # All URLs :
273273
274274 * 0: https://www.gstatic.com/firebasejs/6.6.1/firebase-performance.js
275275
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ export class AICallTree {
249249 let output = '' ;
250250 if ( allUrls . length ) {
251251 // Output lookup table of URLs within this tree
252- output += '\n# All URL #s :\n\n' + allUrls . map ( ( url , index ) => ` * ${ index } : ${ url } ` ) . join ( '\n' ) ;
252+ output += '\n# All URLs :\n\n' + allUrls . map ( ( url , index ) => ` * ${ index } : ${ url } ` ) . join ( '\n' ) ;
253253 }
254254 output += '\n\n# Call tree:\n' + nodesStr ;
255255 return output ;
You can’t perform that action at this time.
0 commit comments