@@ -190,7 +190,7 @@ describe('AWSLambda', () => {
190190 expect ( Sentry . startTransaction ) . toBeCalledWith ( {
191191 name : 'functionName' ,
192192 op : 'awslambda.handler' ,
193- metadata : { baggage : [ { } , '' , false ] } ,
193+ metadata : { baggage : [ { } , '' , true ] } ,
194194 } ) ;
195195 expectScopeSettings ( ) ;
196196 // @ts -ignore see "Why @ts-ignore" note
@@ -213,7 +213,7 @@ describe('AWSLambda', () => {
213213 expect ( Sentry . startTransaction ) . toBeCalledWith ( {
214214 name : 'functionName' ,
215215 op : 'awslambda.handler' ,
216- metadata : { baggage : [ { } , '' , false ] } ,
216+ metadata : { baggage : [ { } , '' , true ] } ,
217217 } ) ;
218218 expectScopeSettings ( ) ;
219219 expect ( Sentry . captureException ) . toBeCalledWith ( error ) ;
@@ -257,7 +257,7 @@ describe('AWSLambda', () => {
257257 release : '2.12.1' ,
258258 } ,
259259 'maisey=silly,charlie=goofy' ,
260- true ,
260+ false ,
261261 ] ,
262262 } ,
263263 } ) ,
@@ -289,7 +289,7 @@ describe('AWSLambda', () => {
289289 traceId : '12312012123120121231201212312012' ,
290290 parentSpanId : '1121201211212012' ,
291291 parentSampled : false ,
292- metadata : { baggage : [ { } , '' , true ] } ,
292+ metadata : { baggage : [ { } , '' , false ] } ,
293293 } ) ;
294294 expectScopeSettings ( ) ;
295295 expect ( Sentry . captureException ) . toBeCalledWith ( e ) ;
@@ -313,7 +313,7 @@ describe('AWSLambda', () => {
313313 expect ( Sentry . startTransaction ) . toBeCalledWith ( {
314314 name : 'functionName' ,
315315 op : 'awslambda.handler' ,
316- metadata : { baggage : [ { } , '' , false ] } ,
316+ metadata : { baggage : [ { } , '' , true ] } ,
317317 } ) ;
318318 expectScopeSettings ( ) ;
319319 // @ts -ignore see "Why @ts-ignore" note
@@ -347,7 +347,7 @@ describe('AWSLambda', () => {
347347 expect ( Sentry . startTransaction ) . toBeCalledWith ( {
348348 name : 'functionName' ,
349349 op : 'awslambda.handler' ,
350- metadata : { baggage : [ { } , '' , false ] } ,
350+ metadata : { baggage : [ { } , '' , true ] } ,
351351 } ) ;
352352 expectScopeSettings ( ) ;
353353 expect ( Sentry . captureException ) . toBeCalledWith ( error ) ;
@@ -386,7 +386,7 @@ describe('AWSLambda', () => {
386386 expect ( Sentry . startTransaction ) . toBeCalledWith ( {
387387 name : 'functionName' ,
388388 op : 'awslambda.handler' ,
389- metadata : { baggage : [ { } , '' , false ] } ,
389+ metadata : { baggage : [ { } , '' , true ] } ,
390390 } ) ;
391391 expectScopeSettings ( ) ;
392392 // @ts -ignore see "Why @ts-ignore" note
@@ -420,7 +420,7 @@ describe('AWSLambda', () => {
420420 expect ( Sentry . startTransaction ) . toBeCalledWith ( {
421421 name : 'functionName' ,
422422 op : 'awslambda.handler' ,
423- metadata : { baggage : [ { } , '' , false ] } ,
423+ metadata : { baggage : [ { } , '' , true ] } ,
424424 } ) ;
425425 expectScopeSettings ( ) ;
426426 expect ( Sentry . captureException ) . toBeCalledWith ( error ) ;
0 commit comments