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