Skip to content

Commit 99bca74

Browse files
committed
formatting
1 parent 2a00b10 commit 99bca74

File tree

2 files changed

+4
-4
lines changed
  • dev-packages/node-integration-tests/suites/express/handle-error-withScope

2 files changed

+4
-4
lines changed

dev-packages/node-integration-tests/suites/express/handle-error-withScope/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ app.get('/test/express', () => {
1818
Sentry.withScope(scope => {
1919
scope.setTag('local', 'tag');
2020
throw new Error('test_error');
21-
})
21+
});
2222
});
2323

2424
app.use(Sentry.Handlers.errorHandler());

dev-packages/node-integration-tests/suites/express/handle-error-withScope/test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ test('applies withScope scope to thrown error', done => {
3131
],
3232
},
3333
tags: {
34-
'global': 'tag',
35-
'local': 'tag', // This tag is missing :(
36-
}
34+
global: 'tag',
35+
local: 'tag', // This tag is missing :(
36+
},
3737
},
3838
})
3939
.start(done);

0 commit comments

Comments
 (0)