Skip to content

Commit f833e5b

Browse files
committed
Fix any type
1 parent f0cdc05 commit f833e5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/tracing-internal/test/browser/request.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,8 @@ describe('HTTPTimings', () => {
434434

435435
const protocols = Object.keys(nextHopToNetworkVersion);
436436
for (const protocol of protocols) {
437-
expect(extractNetworkProtocol(protocol)).toMatchObject(nextHopToNetworkVersion[protocol]);
437+
const expected: { name: string; version: string } = nextHopToNetworkVersion[protocol];
438+
expect(extractNetworkProtocol(protocol)).toMatchObject(expected);
438439
}
439440
});
440441
});

0 commit comments

Comments
 (0)