Temporal: Fix missing close quotation mark in error message

This commit is contained in:
Tim Chevalier 2025-03-12 14:02:22 -07:00 committed by Philip Chimento
parent 84f820258b
commit 0c2144e3e6
1 changed files with 1 additions and 1 deletions

View File

@ -24,6 +24,6 @@ badOffsets.forEach((offset) => {
assert.throws(
typeof(offset) === 'string' ? RangeError : TypeError,
() => instance.total({ unit: "days", relativeTo }),
`"${offset} is not a valid offset string`
`"${offset}" is not a valid offset string`
);
});