chore: migrate $ERROR -> throw new Test262Error in test/intl402 (#3094)

This commit is contained in:
Rick Waldron 2021-07-21 16:36:32 -04:00 committed by GitHub
parent d558af3ac0
commit 805e081783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ testWithIntlConstructors(function (Constructor) {
obj = new Constructor();
newObj = Intl.DateTimeFormat.call(obj);
if (obj !== newObj) {
$ERROR("Should have modified existing object.");
throw new Test262Error("Should have modified existing object.");
}
var key = Object.getOwnPropertySymbols(newObj)[0];
if (!(newObj[key] instanceof Intl.DateTimeFormat)) {
$ERROR("Should have installed a DateTimeFormat instance.");
throw new Test262Error("Should have installed a DateTimeFormat instance.");
}
return true;
}
@ -28,7 +28,7 @@ testWithIntlConstructors(function (Constructor) {
obj = new Constructor();
newObj = Intl.DateTimeFormat.call(obj);
if (obj === newObj) {
$ERROR("DateTimeFormat object created with \"new\" was not ignored as this-value.");
throw new Test262Error("DateTimeFormat object created with \"new\" was not ignored as this-value.");
}
return true;