diff --git a/test/intl402/Temporal/ZonedDateTime/prototype/equals/canonicalize-utc-timezone.js b/test/intl402/Temporal/ZonedDateTime/prototype/equals/canonicalize-utc-timezone.js index d34ef74581..4c0bb20285 100644 --- a/test/intl402/Temporal/ZonedDateTime/prototype/equals/canonicalize-utc-timezone.js +++ b/test/intl402/Temporal/ZonedDateTime/prototype/equals/canonicalize-utc-timezone.js @@ -34,7 +34,7 @@ for (var ix = 0; ix < utcIdentifiers.length; ix++) { var dateTime = new Temporal.ZonedDateTime(0n, timeZone); assert.sameValue( dateTime.timeZoneId, - utcDateTime.timeZoneId, + timeZone, timeZone + " should be preserved and not canonicalized to UTC"); assert(dateTime.equals(utcDateTime), "Time zone " + timeZone + " should be equal to primary identifier UTC"); }