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