Skip to content

Commit

Permalink
Fixes typo in test description
Browse files Browse the repository at this point in the history
  • Loading branch information
tdeekens committed Dec 13, 2021
1 parent 1c8d1c4 commit e6bfc2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/matching/matchRequestUrl.test.ts
Expand Up @@ -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',
Expand All @@ -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',
)
Expand Down

0 comments on commit e6bfc2a

Please sign in to comment.