diff --git a/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-number.js b/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-number.js index 82c4337cc0..58775d77ae 100644 --- a/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-number.js +++ b/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-number.js @@ -10,12 +10,11 @@ features: [Temporal] const calendar = 19970327; const timeZone = new Temporal.TimeZone("UTC"); - -let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; +let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; const result1 = Temporal.ZonedDateTime.from(arg); assert.sameValue(result1.calendar.id, "iso8601", "19970327 is a valid ISO string for calendar"); -arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; +arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; const result2 = Temporal.ZonedDateTime.from(arg); assert.sameValue(result2.calendar.id, "iso8601", "19970327 is a valid ISO string for calendar (nested property)"); @@ -26,13 +25,13 @@ const numbers = [ ]; for (const calendar of numbers) { - let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; + let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; assert.throws( RangeError, () => Temporal.ZonedDateTime.from(arg), `Number ${calendar} does not convert to a valid ISO string for calendar` ); - arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; + arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; assert.throws( RangeError, () => Temporal.ZonedDateTime.from(arg), diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-number.js b/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-number.js index 63105a259a..d3419b97b8 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-number.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-number.js @@ -12,11 +12,11 @@ const instance = new Temporal.ZonedDateTime(0n, timeZone); const calendar = 19970327; -let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; +let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; const result1 = instance.equals(arg); assert.sameValue(result1, true, "19970327 is a valid ISO string for calendar"); -arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; +arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; const result2 = instance.equals(arg); assert.sameValue(result2, true, "19970327 is a valid ISO string for calendar (nested property)"); @@ -27,13 +27,13 @@ const numbers = [ ]; for (const calendar of numbers) { - let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; + let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; assert.throws( RangeError, () => instance.equals(arg), `Number ${calendar} does not convert to a valid ISO string for calendar` ); - arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; + arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; assert.throws( RangeError, () => instance.equals(arg), diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-number.js b/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-number.js index 4cf765900d..d99297f1a0 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-number.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-number.js @@ -13,11 +13,11 @@ const instance = new Temporal.ZonedDateTime(0n, timeZone); const calendar = 19970327; -let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; +let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; const result1 = instance.since(arg); TemporalHelpers.assertDuration(result1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "19970327 is a valid ISO string for calendar"); -arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; +arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; const result2 = instance.since(arg); TemporalHelpers.assertDuration(result2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "19970327 is a valid ISO string for calendar (nested property)"); @@ -28,13 +28,13 @@ const numbers = [ ]; for (const calendar of numbers) { - let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; + let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; assert.throws( RangeError, () => instance.since(arg), `Number ${calendar} does not convert to a valid ISO string for calendar` ); - arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; + arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; assert.throws( RangeError, () => instance.since(arg), diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-number.js b/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-number.js index cb4b7ee17b..7db7eaa625 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-number.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-number.js @@ -13,11 +13,11 @@ const instance = new Temporal.ZonedDateTime(0n, timeZone); const calendar = 19970327; -let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; +let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; const result1 = instance.until(arg); TemporalHelpers.assertDuration(result1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "19970327 is a valid ISO string for calendar"); -arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; +arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; const result2 = instance.until(arg); TemporalHelpers.assertDuration(result2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "19970327 is a valid ISO string for calendar (nested property)"); @@ -28,13 +28,13 @@ const numbers = [ ]; for (const calendar of numbers) { - let arg = { year: 1970, monthCode: "M01", day: 1, calendar, timeZone }; + let arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar }; assert.throws( RangeError, () => instance.until(arg), `Number ${calendar} does not convert to a valid ISO string for calendar` ); - arg = { year: 1970, monthCode: "M01", day: 1, calendar: { calendar }, timeZone }; + arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: { calendar } }; assert.throws( RangeError, () => instance.until(arg),