Skip to content

Commit 4eb2604

Browse files
committed
fix tests
1 parent 1e1dcca commit 4eb2604

File tree

4 files changed

+0
-4
lines changed
  • dev-packages
    • browser-integration-tests/suites/public-api/startSpan/parallel-root-spans-with-parentSpanId
    • node-integration-tests/suites/public-api/startSpan
  • packages/opentelemetry/src

4 files changed

+0
-4
lines changed

dev-packages/browser-integration-tests/suites/public-api/startSpan/parallel-root-spans-with-parentSpanId/subject.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Sentry.getCurrentScope().setPropagationContext({
22
parentSpanId: '1234567890123456',
3-
spanId: '123456789012345x',
43
traceId: '12345678901234567890123456789012',
54
});
65

dev-packages/node-integration-tests/suites/public-api/startSpan/parallel-root-spans/scenario.ts

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Sentry.init({
1010

1111
Sentry.getCurrentScope().setPropagationContext({
1212
parentSpanId: '1234567890123456',
13-
spanId: '123456789012345x',
1413
traceId: '12345678901234567890123456789012',
1514
});
1615

dev-packages/node-integration-tests/suites/public-api/startSpan/parallel-spans-in-scope-with-parentSpanId/scenario.ts

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Sentry.init({
1111
Sentry.withScope(scope => {
1212
scope.setPropagationContext({
1313
parentSpanId: '1234567890123456',
14-
spanId: '123456789012345x',
1514
traceId: '12345678901234567890123456789012',
1615
});
1716

packages/opentelemetry/src/propagator.ts

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
SENTRY_BAGGAGE_KEY_PREFIX,
99
baggageHeaderToDynamicSamplingContext,
1010
generateSentryTraceHeader,
11-
generateSpanId,
1211
getClient,
1312
getCurrentScope,
1413
getDynamicSamplingContextFromScope,

0 commit comments

Comments
 (0)