summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Date/prototype/getUTCMonth')
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js11
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js2
2 files changed, 7 insertions, 6 deletions
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js
index 796815dd91..854fc0a14f 100644
--- a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Date.prototype.getUTCMonth.name, "getUTCMonth");
-
-verifyNotEnumerable(Date.prototype.getUTCMonth, "name");
-verifyNotWritable(Date.prototype.getUTCMonth, "name");
-verifyConfigurable(Date.prototype.getUTCMonth, "name");
+verifyProperty(Date.prototype.getUTCMonth, "name", {
+ value: "getUTCMonth",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js
index 55428f88be..666a073fce 100644
--- a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
let date = new Date(Date.now()); new date.getUTCMonth();
-}, '`let date = new Date(Date.now()); new date.getUTCMonth()` throws TypeError');
+});
reportCompare(0, 0);