diff --git a/src/utils/matching/matchRequestUrl.test.ts b/src/utils/matching/matchRequestUrl.test.ts index 6fc915d62..3d8a6a7ed 100644 --- a/src/utils/matching/matchRequestUrl.test.ts +++ b/src/utils/matching/matchRequestUrl.test.ts @@ -87,7 +87,7 @@ describe('coercePath', () => { ) }) - test('escapes the semicolon in protocol', () => { + test('escapes the colon in protocol', () => { expect(coercePath('https://example.com')).toEqual('https\\://example.com') expect(coercePath('https://example.com/:userId')).toEqual( 'https\\://example.com/:userId', @@ -97,7 +97,7 @@ describe('coercePath', () => { ) }) - test('escapes the semicolon in port', () => { + test('escapes the colon in port', () => { expect(coercePath('https://example.com:1234')).toEqual( 'https\\://example.com\\:1234', )