Temporal: Fix typo in ZonedDateTime/from/offset-wrong-type.js.

This commit is contained in:
Ms2ger 2022-06-24 16:03:26 +02:00 committed by Philip Chimento
parent 8123e8fc34
commit 079a7eac7a
1 changed files with 2 additions and 2 deletions

View File

@ -23,13 +23,13 @@ features: [Temporal]
const datetime = new Temporal.ZonedDateTime(1_000_000_000_987_654_321n, "UTC");
TemporalHelpers.checkStringOptionWrongType("offset", "reject",
(disambiguation) => Temporal.ZonedDateTime.from(datetime, { disambiguation }),
(offset) => Temporal.ZonedDateTime.from(datetime, { offset }),
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),
);
const timeZone = new Temporal.TimeZone("UTC");
const propertyBag = { timeZone, offset: "+00:00", year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
TemporalHelpers.checkStringOptionWrongType("offset", "reject",
(disambiguation) => Temporal.ZonedDateTime.from(propertyBag, { disambiguation }),
(offset) => Temporal.ZonedDateTime.from(propertyBag, { offset }),
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),
);