Temporal Helpers: Avoid observable calendar ID lookup in OneShiftTimeZone

This toString() call would observably get the `id` property of the
plainDateTime's calendar object. Not good for the tests that I am writing
that verify observable calls!
This commit is contained in:
Philip Chimento 2023-08-28 12:28:32 -07:00 committed by Philip Chimento
parent d4f49b84ab
commit 5c7f4009dc
1 changed files with 1 additions and 1 deletions

View File

@ -1734,7 +1734,7 @@ var TemporalHelpers = {
}
getPossibleInstantsFor(plainDateTime) {
this.getPossibleInstantsForCalledWith.push(plainDateTime.toString());
this.getPossibleInstantsForCalledWith.push(plainDateTime.toString({ calendarName: "never" }));
const [instant] = super.getPossibleInstantsFor(plainDateTime);
if (this._shiftNanoseconds > 0) {
if (this._isBeforeShift(instant)) return [instant];