mirror of https://github.com/tc39/test262.git
Temporal: Use some constructors directly
Be consistent about creating Temporal objects for use in tests with direct constructor calls, instead of relying on string coercions. This reduces coupling in the tests.
This commit is contained in:
parent
078f3e22a4
commit
88a4cf4af7
|
@ -7,7 +7,8 @@ description: A number as calendar in a property bag is converted to a string, th
|
|||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.ZonedDateTime(1_000_000_000_000_000_000n, "UTC");
|
||||
const timeZone = new Temporal.TimeZone("UTC");
|
||||
const instance = new Temporal.ZonedDateTime(1_000_000_000_000_000_000n, timeZone);
|
||||
|
||||
const calendar = 19970327;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ features: [BigInt, Symbol, Temporal]
|
|||
---*/
|
||||
|
||||
const timeZone = new Temporal.TimeZone("UTC");
|
||||
const instance = new Temporal.ZonedDateTime(1_000_000_000_000_000_000n, "UTC");
|
||||
const instance = new Temporal.ZonedDateTime(1_000_000_000_000_000_000n, timeZone);
|
||||
|
||||
const rangeErrorTests = [
|
||||
[null, "null"],
|
||||
|
|
Loading…
Reference in New Issue