From 6561785029f52bd26fa873913e536a50121c66d6 Mon Sep 17 00:00:00 2001 From: Daniel Griesser Date: Thu, 28 May 2020 13:10:44 +0200 Subject: [PATCH] fix: Tests --- packages/apm/test/span.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/apm/test/span.test.ts b/packages/apm/test/span.test.ts index 2bfa32a8ebe1..06cfaa702d3c 100644 --- a/packages/apm/test/span.test.ts +++ b/packages/apm/test/span.test.ts @@ -158,7 +158,6 @@ describe('Span', () => { const spanA = new Span({ traceId: 'a', spanId: 'b' }) as any; const spanB = new Span({ parentSpanId: spanA.spanId, - sampled: false, spanId: 'd', traceId: 'c', }); @@ -167,7 +166,6 @@ describe('Span', () => { delete (serialized as { start_timestamp: number }).start_timestamp; expect(serialized).toStrictEqual({ parent_span_id: 'b', - sampled: false, span_id: 'd', trace_id: 'c', });