File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
plugins/node/opentelemetry-instrumentation-aws-sdk/test Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -210,12 +210,12 @@ describe('SQS', () => {
210210 const processChildSpans = spans . filter ( s => s . kind === SpanKind . INTERNAL ) ;
211211 expect ( processChildSpans . length ) . toBe ( 2 * numChildPerProcessSpan ) ;
212212 for ( let i = 0 ; i < numChildPerProcessSpan ; i ++ ) {
213- expect ( processChildSpans [ 2 * i + 0 ] . parentSpanContext ?. spanId ) . toStrictEqual (
214- processSpans [ 0 ] . spanContext ( ) . spanId
215- ) ;
216- expect ( processChildSpans [ 2 * i + 1 ] . parentSpanContext ?. spanId ) . toStrictEqual (
217- processSpans [ 1 ] . spanContext ( ) . spanId
218- ) ;
213+ expect (
214+ processChildSpans [ 2 * i + 0 ] . parentSpanContext ? .spanId
215+ ) . toStrictEqual ( processSpans [ 0 ] . spanContext ( ) . spanId ) ;
216+ expect (
217+ processChildSpans [ 2 * i + 1 ] . parentSpanContext ? .spanId
218+ ) . toStrictEqual ( processSpans [ 1 ] . spanContext ( ) . spanId ) ;
219219 }
220220 } ;
221221
You can’t perform that action at this time.
0 commit comments