summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js b/js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js
index 13f5f41f9f..72ba2d6b34 100644
--- a/js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js
+++ b/js/src/tests/test262/built-ins/Function/prototype/Symbol.hasInstance/name.js
@@ -10,12 +10,11 @@ features: [Symbol.hasInstance]
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Function.prototype[Symbol.hasInstance].name, '[Symbol.hasInstance]'
-);
-
-verifyNotEnumerable(Function.prototype[Symbol.hasInstance], 'name');
-verifyNotWritable(Function.prototype[Symbol.hasInstance], 'name');
-verifyConfigurable(Function.prototype[Symbol.hasInstance], 'name');
+verifyProperty(Function.prototype[Symbol.hasInstance], "name", {
+ value: "[Symbol.hasInstance]",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);