diff --git a/test/built-ins/Temporal/Duration/compare/order-of-operations.js b/test/built-ins/Temporal/Duration/compare/order-of-operations.js index fc029b30a3..cb50fd405d 100644 --- a/test/built-ins/Temporal/Duration/compare/order-of-operations.js +++ b/test/built-ins/Temporal/Duration/compare/order-of-operations.js @@ -112,8 +112,12 @@ const expected = [ "get options.relativeTo.offset", "get options.relativeTo.timeZone", "has options.relativeTo.timeZone.timeZone", + "get options.relativeTo.offset.toString", + "call options.relativeTo.offset.toString", "get options.relativeTo.timeZone.getPossibleInstantsFor", "call options.relativeTo.timeZone.getPossibleInstantsFor", + "get options.relativeTo.timeZone.getOffsetNanosecondsFor", + "call options.relativeTo.timeZone.getOffsetNanosecondsFor", // CalculateOffsetShift on first argument "get options.relativeTo.timeZone.getOffsetNanosecondsFor", "call options.relativeTo.timeZone.getOffsetNanosecondsFor", @@ -152,6 +156,7 @@ const relativeTo = TemporalHelpers.propertyBagObserver(actual, { millisecond: 987, microsecond: 654, nanosecond: 321, + offset: "+00:00", calendar: TemporalHelpers.calendarObserver(actual, "options.relativeTo.calendar"), timeZone: TemporalHelpers.timeZoneObserver(actual, "options.relativeTo.timeZone"), }, "options.relativeTo"); diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/since/order-of-operations.js b/test/built-ins/Temporal/ZonedDateTime/prototype/since/order-of-operations.js index 40c8c606e2..7ec3f9f812 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/since/order-of-operations.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/since/order-of-operations.js @@ -46,11 +46,15 @@ const expected = [ "call other.year.valueOf", "get other.timeZone", "get other.offset", + "get other.offset.toString", + "call other.offset.toString", "has other.timeZone.timeZone", "get other.calendar.dateFromFields", "call other.calendar.dateFromFields", "get other.timeZone.getPossibleInstantsFor", "call other.timeZone.getPossibleInstantsFor", + "get other.timeZone.getOffsetNanosecondsFor", + "call other.timeZone.getOffsetNanosecondsFor", // CalendarEquals "get this.calendar[Symbol.toPrimitive]", "get this.calendar.toString", @@ -89,6 +93,7 @@ const otherDateTimePropertyBag = TemporalHelpers.propertyBagObserver(actual, { millisecond: 250, microsecond: 500, nanosecond: 750, + offset: "+00:00", calendar: TemporalHelpers.calendarObserver(actual, "other.calendar"), timeZone: TemporalHelpers.timeZoneObserver(actual, "other.timeZone"), }, "other"); diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/until/order-of-operations.js b/test/built-ins/Temporal/ZonedDateTime/prototype/until/order-of-operations.js index d24cf570ca..8bce9c876b 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/until/order-of-operations.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/until/order-of-operations.js @@ -46,11 +46,15 @@ const expected = [ "call other.year.valueOf", "get other.timeZone", "get other.offset", + "get other.offset.toString", + "call other.offset.toString", "has other.timeZone.timeZone", "get other.calendar.dateFromFields", "call other.calendar.dateFromFields", "get other.timeZone.getPossibleInstantsFor", "call other.timeZone.getPossibleInstantsFor", + "get other.timeZone.getOffsetNanosecondsFor", + "call other.timeZone.getOffsetNanosecondsFor", // CalendarEquals "get this.calendar[Symbol.toPrimitive]", "get this.calendar.toString", @@ -89,6 +93,7 @@ const otherDateTimePropertyBag = TemporalHelpers.propertyBagObserver(actual, { millisecond: 250, microsecond: 500, nanosecond: 750, + offset: "+00:00", calendar: TemporalHelpers.calendarObserver(actual, "other.calendar"), timeZone: TemporalHelpers.timeZoneObserver(actual, "other.timeZone"), }, "other");