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