Skip to content

Commit 440bab4

Browse files
committed
cleanup
1 parent 249c1ac commit 440bab4

File tree

3 files changed

+3
-3
lines changed
  • dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone

3 files changed

+3
-3
lines changed

dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/segment-false/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sentryTest('sends a span envelope with is_segment: false', async ({ getLocalTest
2222
const itemHeader = item[0];
2323
const spanJson = item[1];
2424

25-
expect(headers).toMatchObject({
25+
expect(headers).toEqual({
2626
sent_at: expect.any(String),
2727
});
2828

dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/segment-true/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sentryTest('sends a segment span envelope', async ({ getLocalTestPath, page }) =
2222
const itemHeader = item[0];
2323
const spanJson = item[1];
2424

25-
expect(headers).toMatchObject({
25+
expect(headers).toEqual({
2626
sent_at: expect.any(String),
2727
});
2828

dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/segment-undefined/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sentryTest('sends a segment-less span envelope', async ({ getLocalTestPath, page
2222
const itemHeader = item[0];
2323
const spanJson = item[1];
2424

25-
expect(headers).toMatchObject({
25+
expect(headers).toEqual({
2626
sent_at: expect.any(String),
2727
});
2828

0 commit comments

Comments
 (0)