Skip to content

Commit 0bcf0fb

Browse files
authored
test: fix node.js integration tests (#10204)
Fixes Node.js integration tests
1 parent a1f4a3e commit 0bcf0fb

File tree

2 files changed

+5
-5
lines changed
  • dev-packages/node-integration-tests/suites/express/tracing-experimental
  • packages/core/test/lib

2 files changed

+5
-5
lines changed

dev-packages/node-integration-tests/suites/express/tracing-experimental/test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => {
2323
op: 'http.server',
2424
status: 'ok',
2525
tags: {
26-
'http.status_code': 200,
26+
'http.status_code': '200',
2727
},
2828
},
2929
},
@@ -63,7 +63,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => {
6363
op: 'http.server',
6464
status: 'ok',
6565
tags: {
66-
'http.status_code': 200,
66+
'http.status_code': '200',
6767
},
6868
},
6969
},
@@ -95,7 +95,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => {
9595
op: 'http.server',
9696
status: 'ok',
9797
tags: {
98-
'http.status_code': 200,
98+
'http.status_code': '200',
9999
},
100100
},
101101
},
@@ -135,7 +135,7 @@ conditionalTest({ min: 14 })('express tracing experimental', () => {
135135
op: 'http.server',
136136
status: 'ok',
137137
tags: {
138-
'http.status_code': 200,
138+
'http.status_code': '200',
139139
},
140140
},
141141
},

packages/core/test/lib/scope.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ describe('withActiveSpan()', () => {
528528
const client = new TestClient(options);
529529
const scope = new Scope();
530530
const hub = new Hub(client, scope);
531-
makeMain(hub);
531+
makeMain(hub); // eslint-disable-line deprecation/deprecation
532532
});
533533

534534
it('should set the active span within the callback', () => {

0 commit comments

Comments
 (0)