Skip to content

Commit 18f6ed2

Browse files
ptomatoMs2ger
authored andcommitted
Add missing quotation mark in assertion message
1 parent 0e496d5 commit 18f6ed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-invalid-offset-string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ badOffsets.forEach((offset) => {
2424
assert.throws(
2525
typeof(offset) === 'string' ? RangeError : TypeError,
2626
() => instance.round({ largestUnit: "years", relativeTo }),
27-
`"${offset} is not a valid offset string`
27+
`"${offset}" is not a valid offset string`
2828
);
2929
});

0 commit comments

Comments
 (0)