Skip to content

Commit a69dc2e

Browse files
committed
fix linting
1 parent 7a371a6 commit a69dc2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tracing-internal/test/browser/metrics/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,14 +261,14 @@ describe('_addResourceSpans', () => {
261261
});
262262
});
263263

264-
const setGlobalLocation = (location: Location) => {
264+
const setGlobalLocation = () => {
265265
// @ts-expect-error need to delete this in order to set to new value
266266
delete WINDOW.location;
267267
WINDOW.location = mockWindowLocation;
268268
};
269269

270270
const resetGlobalLocation = () => {
271-
// @ts-expect-error
271+
// @ts-expect-error need to delete this in order to set to new value
272272
delete WINDOW.location;
273273
WINDOW.location = originalLocation;
274274
};

0 commit comments

Comments
 (0)