Skip to content

Commit c86ef3c

Browse files
committed
fix tests
1 parent ae11d96 commit c86ef3c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dev-packages/browser-integration-tests/suites/integrations/httpclient/axios/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ sentryTest(
3636
type: 'Error',
3737
value: 'HTTP Client Error with status code: 500',
3838
mechanism: {
39-
type: 'http.client',
39+
type: 'http.client.xhr',
4040
handled: false,
4141
},
4242
stacktrace: {

dev-packages/browser-integration-tests/suites/integrations/httpclient/fetch/simple/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ sentryTest(
3838
type: 'Error',
3939
value: 'HTTP Client Error with status code: 500',
4040
mechanism: {
41-
type: 'http.client',
41+
type: 'http.client.fetch',
4242
handled: false,
4343
},
4444
stacktrace: {

dev-packages/browser-integration-tests/suites/integrations/httpclient/fetch/withRequest/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sentryTest('works with a Request passed in', async ({ getLocalTestUrl, page }) =
3434
type: 'Error',
3535
value: 'HTTP Client Error with status code: 500',
3636
mechanism: {
37-
type: 'http.client',
37+
type: 'http.client.fetch',
3838
handled: false,
3939
},
4040
stacktrace: {

dev-packages/browser-integration-tests/suites/integrations/httpclient/fetch/withRequestAndBodyAndOptions/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ sentryTest(
3636
type: 'Error',
3737
value: 'HTTP Client Error with status code: 500',
3838
mechanism: {
39-
type: 'http.client',
39+
type: 'http.client.fetch',
4040
handled: false,
4141
},
4242
stacktrace: {

dev-packages/browser-integration-tests/suites/integrations/httpclient/fetch/withRequestAndOptions/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sentryTest('works with a Request (without body) & options passed in', async ({ g
3434
type: 'Error',
3535
value: 'HTTP Client Error with status code: 500',
3636
mechanism: {
37-
type: 'http.client',
37+
type: 'http.client.fetch',
3838
handled: false,
3939
},
4040
stacktrace: {

dev-packages/browser-integration-tests/suites/integrations/httpclient/xhr/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ sentryTest(
3636
type: 'Error',
3737
value: 'HTTP Client Error with status code: 500',
3838
mechanism: {
39-
type: 'http.client',
39+
type: 'http.client.xhr',
4040
handled: false,
4141
},
4242
stacktrace: {

0 commit comments

Comments
 (0)