mirror of https://github.com/tc39/test262.git
Temporal: Fix typo in ZonedDateTime/from/offset-wrong-type.js.
This commit is contained in:
parent
8123e8fc34
commit
079a7eac7a
|
@ -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),
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue