Fix Temporal.PlainDateTime.withPlainDate tests

I suggested in #3517 that these lines should be removed but didn't realize
they must be present because TemporalHelpers.assertPlainDateTime is going
to check the 'era' and 'eraYear' properties.
This commit is contained in:
Philip Chimento 2022-05-04 16:09:42 -07:00 committed by Ms2ger
parent 0a48029333
commit 2a03068b84
5 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,8 @@ includes: [temporalHelpers.js]
const cal = {
id: 'thisisnotiso',
era() { return undefined; },
eraYear() { return undefined; },
toString() { return "this is a string"; },
year() { return 2008; },
month() { return 9; },

View File

@ -13,6 +13,8 @@ const cal1 = {
};
const cal2 = {
id: 'thisisnotiso',
era() { return undefined; },
eraYear() { return undefined; },
toString() { return "this is a string"; },
year() { return 2008; },
month() { return 9; },

View File

@ -11,6 +11,8 @@ includes: [temporalHelpers.js]
let calls = 0;
const cal = {
id: 'thisisnotiso',
era() { return undefined; },
eraYear() { return undefined; },
toString() {
++calls;
return "this is a string";

View File

@ -10,6 +10,8 @@ includes: [temporalHelpers.js]
const cal = {
id: 'thisisnotiso',
era() { return undefined; },
eraYear() { return undefined; },
toString() { return "this is a string"; },
year() { return 2008; },
month() { return 9; },

View File

@ -10,6 +10,8 @@ includes: [temporalHelpers.js]
const cal = {
id: "thisisnotiso",
era() { return undefined; },
eraYear() { return undefined; },
toString() { return "this is a string"; },
year() { return 2008; },
month() { return 9; },