From c986b1e4576e1f9884d191896c3bee1627826a34 Mon Sep 17 00:00:00 2001 From: JonasBa Date: Thu, 16 Dec 2021 10:55:31 +0100 Subject: [PATCH] fix(test): remove extra space --- packages/tracing/test/span.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/tracing/test/span.test.ts b/packages/tracing/test/span.test.ts index 6587e4ba4b82..4b0887f2dda7 100644 --- a/packages/tracing/test/span.test.ts +++ b/packages/tracing/test/span.test.ts @@ -17,7 +17,6 @@ describe('Span', () => { test('simple', () => { const span = new Span({ sampled: true }); const span2 = span.startChild(); - expect((span2 as any).parentSpanId).toBe((span as any).spanId); expect((span2 as any).traceId).toBe((span as any).traceId); expect((span2 as any).sampled).toBe((span as any).sampled);