summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js')
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js
index 1a723340a3..78a592b823 100644
--- a/js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMilliseconds/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Date.prototype.getUTCMilliseconds.name, "getUTCMilliseconds");
-
-verifyNotEnumerable(Date.prototype.getUTCMilliseconds, "name");
-verifyNotWritable(Date.prototype.getUTCMilliseconds, "name");
-verifyConfigurable(Date.prototype.getUTCMilliseconds, "name");
+verifyProperty(Date.prototype.getUTCMilliseconds, "name", {
+ value: "getUTCMilliseconds",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);