summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js')
-rw-r--r--js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js b/js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js
index e81470dc1c..5383bbd19a 100644
--- a/js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js
+++ b/js/src/tests/test262/built-ins/WeakSet/prototype/add/name.js
@@ -11,13 +11,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- WeakSet.prototype.add.name, 'add',
- 'The value of WeakSet.prototype.add.name is "add"'
-);
-
-verifyNotEnumerable(WeakSet.prototype.add, 'name');
-verifyNotWritable(WeakSet.prototype.add, 'name');
-verifyConfigurable(WeakSet.prototype.add, 'name');
+verifyProperty(WeakSet.prototype.add, "name", {
+ value: "add",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);