From e6bfc2ae366ccdabcd9813e96dcf167d101f32a0 Mon Sep 17 00:00:00 2001 From: tdeekens Date: Mon, 13 Dec 2021 21:56:43 +0100 Subject: [PATCH] Fixes typo in test description --- src/utils/matching/matchRequestUrl.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', )