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:
Philip Chimento 2022-04-22 16:35:35 -07:00 committed by Ms2ger
parent 078f3e22a4
commit 88a4cf4af7
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -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"],