summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/call
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/call')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/call/name.js11
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js4
2 files changed, 8 insertions, 7 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/call/name.js b/js/src/tests/test262/built-ins/Function/prototype/call/name.js
index d919573ff9..7f121d7235 100644
--- a/js/src/tests/test262/built-ins/Function/prototype/call/name.js
+++ b/js/src/tests/test262/built-ins/Function/prototype/call/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Function.prototype.call.name, "call");
-
-verifyNotEnumerable(Function.prototype.call, "name");
-verifyNotWritable(Function.prototype.call, "name");
-verifyConfigurable(Function.prototype.call, "name");
+verifyProperty(Function.prototype.call, "name", {
+ value: "call",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js b/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
index 1ae179235e..7e90f7fee7 100644
--- a/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
@@ -29,11 +29,11 @@ assert.sameValue(
assert.throws(TypeError, () => {
new Function.prototype.call();
-}, '`new Function.prototype.call()` throws TypeError');
+});
assert.throws(TypeError, () => {
new Function.prototype.call;
-}, '`new Function.prototype.call` throws TypeError');
+});
var call = Function.prototype.call;
assert.throws(TypeError, () => {