Update matching test for www. removal.

This commit is contained in:
Bauke 2022-10-18 22:24:59 +02:00
parent befcfdb85f
commit 89751faad2
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ test('Redirect.isMatch', (t) => {
const hostnameRedirect = new HostnameRedirect(hostnameParameters);
const hostnameSamples: UrlSamples = [
['https://example.com', true],
['https://www.example.com', false],
['https://www.example.com', true],
['https://example.org', false],
];