diff --git a/test/built-ins/Temporal/Duration/compare/relativeto-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/Duration/compare/relativeto-propertybag-timezone-wrong-type.js index d2e0ad6c77..56448bbd69 100644 --- a/test/built-ins/Temporal/Duration/compare/relativeto-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/Duration/compare/relativeto-propertybag-timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.duration.compare description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -28,8 +28,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-calendar-wrong-type.js index 8fd96253b3..ffd9706346 100644 --- a/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-calendar-wrong-type.js @@ -31,8 +31,7 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], + [{}, "object"], [Temporal.PlainDate, "Temporal.PlainDate, object"], [Temporal.PlainDate.prototype, "Temporal.PlainDate.prototype, object"], [Temporal.ZonedDateTime, "Temporal.ZonedDateTime, object"], diff --git a/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-timezone-wrong-type.js index 57490a501f..01faba8a82 100644 --- a/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/Duration/prototype/round/relativeto-propertybag-timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.duration.prototype.round description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-calendar-wrong-type.js index 89d8002d2a..3e2b8a7a4a 100644 --- a/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-calendar-wrong-type.js @@ -31,8 +31,7 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], + [{}, "object"], [Temporal.PlainDate, "Temporal.PlainDate, object"], [Temporal.PlainDate.prototype, "Temporal.PlainDate.prototype, object"], [Temporal.ZonedDateTime, "Temporal.ZonedDateTime, object"], diff --git a/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-timezone-wrong-type.js index 8654838977..c4b29ed487 100644 --- a/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/Duration/prototype/total/relativeto-propertybag-timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.duration.prototype.total description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Instant/prototype/toString/timezone-wrong-type.js b/test/built-ins/Temporal/Instant/prototype/toString/timezone-wrong-type.js index c7ed824fea..7de86e0d7d 100644 --- a/test/built-ins/Temporal/Instant/prototype/toString/timezone-wrong-type.js +++ b/test/built-ins/Temporal/Instant/prototype/toString/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.instant.prototype.tostring description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Instant/prototype/toZonedDateTimeISO/timezone-wrong-type.js b/test/built-ins/Temporal/Instant/prototype/toZonedDateTimeISO/timezone-wrong-type.js index f6b83f9481..fd1cafe7ae 100644 --- a/test/built-ins/Temporal/Instant/prototype/toZonedDateTimeISO/timezone-wrong-type.js +++ b/test/built-ins/Temporal/Instant/prototype/toZonedDateTimeISO/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.instant.prototype.tozoneddatetimeiso description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Now/plainDateISO/timezone-wrong-type.js b/test/built-ins/Temporal/Now/plainDateISO/timezone-wrong-type.js index 92d84f597b..2402b6c52a 100644 --- a/test/built-ins/Temporal/Now/plainDateISO/timezone-wrong-type.js +++ b/test/built-ins/Temporal/Now/plainDateISO/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.now.plaindateiso description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -28,8 +28,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Now/plainDateTimeISO/timezone-wrong-type.js b/test/built-ins/Temporal/Now/plainDateTimeISO/timezone-wrong-type.js index ceefe1ca64..318d0cac46 100644 --- a/test/built-ins/Temporal/Now/plainDateTimeISO/timezone-wrong-type.js +++ b/test/built-ins/Temporal/Now/plainDateTimeISO/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.now.plaindatetimeiso description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -28,8 +28,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Now/plainTimeISO/timezone-wrong-type.js b/test/built-ins/Temporal/Now/plainTimeISO/timezone-wrong-type.js index 11458e6061..80b975a365 100644 --- a/test/built-ins/Temporal/Now/plainTimeISO/timezone-wrong-type.js +++ b/test/built-ins/Temporal/Now/plainTimeISO/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.now.plaintimeiso description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -28,8 +28,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/Now/zonedDateTimeISO/timezone-wrong-type.js b/test/built-ins/Temporal/Now/zonedDateTimeISO/timezone-wrong-type.js index d3475fd48e..318fad4285 100644 --- a/test/built-ins/Temporal/Now/zonedDateTimeISO/timezone-wrong-type.js +++ b/test/built-ins/Temporal/Now/zonedDateTimeISO/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.now.zoneddatetimeiso description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -28,8 +28,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/calendar-wrong-type.js index 294267ecba..0555387dc0 100644 --- a/test/built-ins/Temporal/PlainDate/calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindate description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for Calendar + for Calendar features: [BigInt, Symbol, Temporal] ---*/ @@ -27,9 +27,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/compare/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/compare/argument-propertybag-calendar-wrong-type.js index d218110748..2c74354e9d 100644 --- a/test/built-ins/Temporal/PlainDate/compare/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/compare/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindate.compare description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -33,10 +33,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/from/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/from/argument-propertybag-calendar-wrong-type.js index 0d26ebb566..c6a2bdfc9b 100644 --- a/test/built-ins/Temporal/PlainDate/from/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/from/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindate.from description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -28,10 +28,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/prototype/equals/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/prototype/equals/argument-propertybag-calendar-wrong-type.js index a91bbe8e2d..0172fc4adf 100644 --- a/test/built-ins/Temporal/PlainDate/prototype/equals/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/prototype/equals/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindate.prototype.equals description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/prototype/since/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/prototype/since/argument-propertybag-calendar-wrong-type.js index d6fa356f70..043ff19894 100644 --- a/test/built-ins/Temporal/PlainDate/prototype/since/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/prototype/since/argument-propertybag-calendar-wrong-type.js @@ -30,10 +30,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/prototype/toZonedDateTime/timezone-wrong-type.js b/test/built-ins/Temporal/PlainDate/prototype/toZonedDateTime/timezone-wrong-type.js index 6163db000a..a977ab907f 100644 --- a/test/built-ins/Temporal/PlainDate/prototype/toZonedDateTime/timezone-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/prototype/toZonedDateTime/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindate.prototype.tozoneddatetime description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/prototype/until/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/prototype/until/argument-propertybag-calendar-wrong-type.js index 8c8d042319..023184f7f7 100644 --- a/test/built-ins/Temporal/PlainDate/prototype/until/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/prototype/until/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindate.prototype.until description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDate/prototype/withCalendar/calendar-wrong-type.js b/test/built-ins/Temporal/PlainDate/prototype/withCalendar/calendar-wrong-type.js index a637c317fc..b0c2796a33 100644 --- a/test/built-ins/Temporal/PlainDate/prototype/withCalendar/calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDate/prototype/withCalendar/calendar-wrong-type.js @@ -51,9 +51,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/calendar-wrong-type.js index 531a710f6e..b76c42f717 100644 --- a/test/built-ins/Temporal/PlainDateTime/calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindatetime description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for Calendar + for Calendar features: [BigInt, Symbol, Temporal] ---*/ @@ -27,9 +27,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/compare/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/compare/argument-propertybag-calendar-wrong-type.js index f91c49c253..fae20dd9f1 100644 --- a/test/built-ins/Temporal/PlainDateTime/compare/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/compare/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindatetime.compare description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -33,10 +33,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/from/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/from/argument-propertybag-calendar-wrong-type.js index 108f2862e4..092c83c9ea 100644 --- a/test/built-ins/Temporal/PlainDateTime/from/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/from/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindatetime.from description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -28,10 +28,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js index b5a21e8622..46f88bcd58 100644 --- a/test/built-ins/Temporal/PlainDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindatetime.prototype.equals description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js index 1817dc7ebb..745ea669a3 100644 --- a/test/built-ins/Temporal/PlainDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js @@ -30,10 +30,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/prototype/toZonedDateTime/timezone-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/prototype/toZonedDateTime/timezone-wrong-type.js index 1caf19363d..e0c7c08431 100644 --- a/test/built-ins/Temporal/PlainDateTime/prototype/toZonedDateTime/timezone-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/prototype/toZonedDateTime/timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindatetime.prototype.tozoneddatetime description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js index 42545efbea..05c7f85cb9 100644 --- a/test/built-ins/Temporal/PlainDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plaindatetime.prototype.until description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainDateTime/prototype/withCalendar/calendar-wrong-type.js b/test/built-ins/Temporal/PlainDateTime/prototype/withCalendar/calendar-wrong-type.js index 2d4c1958dd..fd75835dee 100644 --- a/test/built-ins/Temporal/PlainDateTime/prototype/withCalendar/calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainDateTime/prototype/withCalendar/calendar-wrong-type.js @@ -51,9 +51,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainMonthDay/calendar-wrong-type.js b/test/built-ins/Temporal/PlainMonthDay/calendar-wrong-type.js index 5bd4a613e8..974ce17773 100644 --- a/test/built-ins/Temporal/PlainMonthDay/calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainMonthDay/calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainmonthday description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for Calendar + for Calendar features: [BigInt, Symbol, Temporal] ---*/ @@ -27,9 +27,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainMonthDay/from/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainMonthDay/from/argument-propertybag-calendar-wrong-type.js index 8dc29c766d..9d182cf616 100644 --- a/test/built-ins/Temporal/PlainMonthDay/from/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainMonthDay/from/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainmonthday.from description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -28,10 +28,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainMonthDay/prototype/equals/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainMonthDay/prototype/equals/argument-propertybag-calendar-wrong-type.js index 13831fb728..6350e1b08a 100644 --- a/test/built-ins/Temporal/PlainMonthDay/prototype/equals/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainMonthDay/prototype/equals/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainmonthday.prototype.equals description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainYearMonth/calendar-wrong-type.js b/test/built-ins/Temporal/PlainYearMonth/calendar-wrong-type.js index efe81bbdf6..c5205e5508 100644 --- a/test/built-ins/Temporal/PlainYearMonth/calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainYearMonth/calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainyearmonth description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for Calendar + for Calendar features: [BigInt, Symbol, Temporal] ---*/ @@ -27,9 +27,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainYearMonth/compare/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainYearMonth/compare/argument-propertybag-calendar-wrong-type.js index 73ecf05f88..ad971ae72b 100644 --- a/test/built-ins/Temporal/PlainYearMonth/compare/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainYearMonth/compare/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainyearmonth.compare description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -33,10 +33,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainYearMonth/from/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainYearMonth/from/argument-propertybag-calendar-wrong-type.js index 96f03d0986..13f11f91de 100644 --- a/test/built-ins/Temporal/PlainYearMonth/from/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainYearMonth/from/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainyearmonth.from description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -28,10 +28,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-propertybag-calendar-wrong-type.js index 9b37beb412..e6851f931a 100644 --- a/test/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainyearmonth.prototype.equals description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainYearMonth/prototype/since/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainYearMonth/prototype/since/argument-propertybag-calendar-wrong-type.js index 4ed5d1450d..b09dd90991 100644 --- a/test/built-ins/Temporal/PlainYearMonth/prototype/since/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainYearMonth/prototype/since/argument-propertybag-calendar-wrong-type.js @@ -30,10 +30,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/PlainYearMonth/prototype/until/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/PlainYearMonth/prototype/until/argument-propertybag-calendar-wrong-type.js index f83308449a..d60b9a93ca 100644 --- a/test/built-ins/Temporal/PlainYearMonth/prototype/until/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/PlainYearMonth/prototype/until/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.plainyearmonth.prototype.until description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/calendar-wrong-type.js index 6aa4667067..7483befa10 100644 --- a/test/built-ins/Temporal/ZonedDateTime/calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.zoneddatetime description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for Calendar + for Calendar features: [BigInt, Symbol, Temporal] ---*/ @@ -27,9 +27,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-calendar-wrong-type.js index a7093dae20..4dc45c4239 100644 --- a/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-calendar-wrong-type.js @@ -35,10 +35,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-timezone-wrong-type.js index 78ee6ad600..de3c5501bf 100644 --- a/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/compare/argument-propertybag-timezone-wrong-type.js @@ -35,8 +35,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-wrong-type.js index e4d9cb7885..7af5110605 100644 --- a/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-calendar-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.zoneddatetime.from description: > Appropriate error thrown when a calendar property from a property bag cannot - be converted to a calendar object or string + be converted to a calendar ID features: [BigInt, Symbol, Temporal] ---*/ @@ -28,10 +28,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-timezone-wrong-type.js index 0e49c1ccaf..a1fb6246cf 100644 --- a/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/from/argument-propertybag-timezone-wrong-type.js @@ -5,7 +5,7 @@ esid: sec-temporal.zoneddatetime.from description: > Appropriate error thrown when argument cannot be converted to a valid string - or object for TimeZone + for time zone features: [BigInt, Symbol, Temporal] ---*/ @@ -28,8 +28,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js index 8eddd1de7d..5c75ee186a 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-calendar-wrong-type.js @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-timezone-wrong-type.js index 494a7414b7..5e66c7bb89 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/equals/argument-propertybag-timezone-wrong-type.js @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js index b07b2a3880..6ba45bec1f 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-calendar-wrong-type.js @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-timezone-wrong-type.js index ae7a2324f8..e6f013fbd3 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/since/argument-propertybag-timezone-wrong-type.js @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js index 7e61e42a92..79c80d3f2c 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-calendar-wrong-type.js @@ -31,10 +31,8 @@ for (const [calendar, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], - [Temporal.Calendar.prototype, "Temporal.Calendar.prototype, object"], // fails brand check in dateFromFields() + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [calendar, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-timezone-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-timezone-wrong-type.js index 31db013f80..e0c4414740 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-timezone-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/until/argument-propertybag-timezone-wrong-type.js @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/withCalendar/calendar-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/withCalendar/calendar-wrong-type.js index 382c7bdf86..4733414af7 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/withCalendar/calendar-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/withCalendar/calendar-wrong-type.js @@ -51,9 +51,8 @@ for (const [arg, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "plain object that doesn't implement the protocol"], - [new Temporal.TimeZone("UTC"), "time zone instance"], - [Temporal.Calendar, "Temporal.Calendar, object"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [arg, description] of typeErrorTests) { diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/withTimeZone/timezone-wrong-type.js b/test/built-ins/Temporal/ZonedDateTime/prototype/withTimeZone/timezone-wrong-type.js index ef042f4e23..525d6944f7 100644 --- a/test/built-ins/Temporal/ZonedDateTime/prototype/withTimeZone/timezone-wrong-type.js +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/withTimeZone/timezone-wrong-type.js @@ -30,8 +30,8 @@ for (const [timeZone, description] of primitiveTests) { const typeErrorTests = [ [Symbol(), "symbol"], - [{}, "object not implementing time zone protocol"], - [new Temporal.Calendar("iso8601"), "calendar instance"], + [{}, "object"], + [new Temporal.Duration(), "duration instance"], ]; for (const [timeZone, description] of typeErrorTests) {