@@ -306,7 +306,7 @@ mochaSuiteFn('tracing/http client', function () {
306306 span . n === 'node.http.client' &&
307307 span . k === 2 &&
308308 span . data . http . method === 'GET' &&
309- span . data . http . url === `http://127.0.0.1:${ globalAgent . instance . agentPort } /`
309+ span . data . http . url === `http://127.0.0.1:${ globalAgent . instance . agentPort } /ping `
310310 ) ;
311311
312312 expect ( spans ) . to . have . length ( 1 ) ;
@@ -328,7 +328,7 @@ mochaSuiteFn('tracing/http client', function () {
328328 http : [
329329 {
330330 methods : [ 'get' ] ,
331- endpoints : [ `http://127.0.0.1:${ customAgentControls . agentPort } /` ]
331+ endpoints : [ `http://127.0.0.1:${ customAgentControls . agentPort } /ping ` ]
332332 }
333333 ]
334334 }
@@ -371,7 +371,7 @@ mochaSuiteFn('tracing/http client', function () {
371371 span . n === 'node.http.client' &&
372372 span . k === 2 &&
373373 span . data . http . method === 'GET' &&
374- span . data . http . url === `http://127.0.0.1:${ customAgentControls . agentPort } /`
374+ span . data . http . url === `http://127.0.0.1:${ customAgentControls . agentPort } /ping `
375375 ) ;
376376
377377 expect ( spans ) . to . have . length ( 2 ) ;
@@ -499,14 +499,14 @@ function registerTests(appUsesHttps) {
499499 verifyHttpExit ( {
500500 spans,
501501 parent : entryInClient ,
502- url : `http://127.0.0.1:${ globalAgent . instance . agentPort } /` ,
502+ url : `http://127.0.0.1:${ globalAgent . instance . agentPort } /ping ` ,
503503 params : 'k=1'
504504 } ) ;
505505
506506 verifyHttpExit ( {
507507 spans,
508508 parent : entryInClient ,
509- url : `http://127.0.0.1:${ globalAgent . instance . agentPort } /` ,
509+ url : `http://127.0.0.1:${ globalAgent . instance . agentPort } /ping ` ,
510510 params : 'k=2'
511511 } ) ;
512512 } ) ;
@@ -1211,7 +1211,7 @@ function verifySuperagentSpans(spans, clientEndpoint, serverEndpoint, clientCont
12111211 method : 'GET' ,
12121212 status : serverEndpoint === '/does-not-exist' ? 404 : 200
12131213 } ) ;
1214- verifyHttpExit ( { spans, parent : entryInClient , url : `http://127.0.0.1:${ globalAgent . instance . agentPort } /` } ) ;
1214+ verifyHttpExit ( { spans, parent : entryInClient , url : `http://127.0.0.1:${ globalAgent . instance . agentPort } /ping ` } ) ;
12151215 verifyHttpEntry ( {
12161216 spans,
12171217 parent : firstExitInClient ,
0 commit comments