diff --git a/dev-packages/node-integration-tests/suites/express/tracing-experimental/test.ts b/dev-packages/node-integration-tests/suites/express/tracing-experimental/test.ts index bb439a043960..526a211033a0 100644 --- a/dev-packages/node-integration-tests/suites/express/tracing-experimental/test.ts +++ b/dev-packages/node-integration-tests/suites/express/tracing-experimental/test.ts @@ -23,7 +23,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => { op: 'http.server', status: 'ok', tags: { - 'http.status_code': 200, + 'http.status_code': '200', }, }, }, @@ -63,7 +63,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => { op: 'http.server', status: 'ok', tags: { - 'http.status_code': 200, + 'http.status_code': '200', }, }, }, @@ -95,7 +95,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => { op: 'http.server', status: 'ok', tags: { - 'http.status_code': 200, + 'http.status_code': '200', }, }, }, @@ -135,7 +135,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => { op: 'http.server', status: 'ok', tags: { - 'http.status_code': 200, + 'http.status_code': '200', }, }, }, diff --git a/packages/core/test/lib/scope.test.ts b/packages/core/test/lib/scope.test.ts index 58f3fe2bb90a..90678eb5062b 100644 --- a/packages/core/test/lib/scope.test.ts +++ b/packages/core/test/lib/scope.test.ts @@ -528,7 +528,7 @@ describe('withActiveSpan()', () => { const client = new TestClient(options); const scope = new Scope(); const hub = new Hub(client, scope); - makeMain(hub); + makeMain(hub); // eslint-disable-line deprecation/deprecation }); it('should set the active span within the callback', () => {