@@ -181,7 +181,6 @@ describe('SentryPropagator', () => {
181181 traceFlags : TraceFlags . SAMPLED ,
182182 isRemote : true ,
183183 traceState : makeTraceState ( {
184- parentSpanId : '6e0c63257de34c92' ,
185184 dsc : {
186185 transaction : 'sampled-transaction' ,
187186 sampled : 'true' ,
@@ -256,7 +255,6 @@ describe('SentryPropagator', () => {
256255 traceFlags : TraceFlags . NONE ,
257256 isRemote : true ,
258257 traceState : makeTraceState ( {
259- parentSpanId : '6e0c63257de34c92' ,
260258 dsc : {
261259 transaction : 'sampled-transaction' ,
262260 sampled : 'false' ,
@@ -291,7 +289,6 @@ describe('SentryPropagator', () => {
291289 isRemote : true ,
292290 traceState : makeTraceState ( {
293291 sampled : false ,
294- parentSpanId : '6e0c63257de34c92' ,
295292 dsc : {
296293 transaction : 'sampled-transaction' ,
297294 trace_id : 'dsc_trace_id' ,
@@ -557,7 +554,7 @@ describe('SentryPropagator', () => {
557554 spanId : '6e0c63257de34c92' ,
558555 traceFlags : TraceFlags . SAMPLED ,
559556 traceId : 'd4cda95b652f4a1592b449d5929fda1b' ,
560- traceState : makeTraceState ( { parentSpanId : '6e0c63257de34c92' } ) ,
557+ traceState : makeTraceState ( { } ) ,
561558 } ) ;
562559 expect ( getSamplingDecision ( trace . getSpanContext ( context ) ! ) ) . toBe ( true ) ;
563560 } ) ;
@@ -571,7 +568,7 @@ describe('SentryPropagator', () => {
571568 spanId : '6e0c63257de34c92' ,
572569 traceFlags : TraceFlags . NONE ,
573570 traceId : 'd4cda95b652f4a1592b449d5929fda1b' ,
574- traceState : makeTraceState ( { parentSpanId : '6e0c63257de34c92' , sampled : false } ) ,
571+ traceState : makeTraceState ( { sampled : false } ) ,
575572 } ) ;
576573 expect ( getSamplingDecision ( trace . getSpanContext ( context ) ! ) ) . toBe ( false ) ;
577574 } ) ;
@@ -585,7 +582,7 @@ describe('SentryPropagator', () => {
585582 spanId : '6e0c63257de34c92' ,
586583 traceFlags : TraceFlags . NONE ,
587584 traceId : 'd4cda95b652f4a1592b449d5929fda1b' ,
588- traceState : makeTraceState ( { parentSpanId : '6e0c63257de34c92' } ) ,
585+ traceState : makeTraceState ( { } ) ,
589586 } ) ;
590587 expect ( getSamplingDecision ( trace . getSpanContext ( context ) ! ) ) . toBe ( undefined ) ;
591588 } ) ;
@@ -635,7 +632,6 @@ describe('SentryPropagator', () => {
635632 traceFlags : TraceFlags . SAMPLED ,
636633 traceId : 'd4cda95b652f4a1592b449d5929fda1b' ,
637634 traceState : makeTraceState ( {
638- parentSpanId : '6e0c63257de34c92' ,
639635 dsc : {
640636 environment : 'production' ,
641637 release : '1.0.0' ,
0 commit comments