Skip to content

Commit

Permalink
fix: Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed May 28, 2020
1 parent f14ec02 commit 6561785
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/apm/test/span.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
Expand All @@ -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',
});
Expand Down

0 comments on commit 6561785

Please sign in to comment.