Fix typos

This commit is contained in:
ThatGuySam 2023-08-12 12:51:46 -05:00
parent 3fde8f10a7
commit c5f333483b
3 changed files with 5 additions and 5 deletions

View file

@ -118,7 +118,7 @@ test('Sitemap contains no double slashes in paths', (t) => {
test('Sitemap mostly matches production', async (t) => {
// console.log('t.context.sitemapUrls', t.context.sitemapUrls)
const theshold = 20
const threshold = 20
const urlsNotOnLive = new Set()
// const newLocalUrls = new Set()
@ -154,7 +154,7 @@ test('Sitemap mostly matches production', async (t) => {
t.log( 'Not found locally', liveSitemapUrlStrings )
}
if ( totalDifferences >= theshold ) {
if ( totalDifferences >= threshold ) {
t.fail( message )
}