summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/pow
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Math/pow')
-rw-r--r--js/src/tests/test262/built-ins/Math/pow/length.js11
-rw-r--r--js/src/tests/test262/built-ins/Math/pow/name.js11
-rw-r--r--js/src/tests/test262/built-ins/Math/pow/not-a-constructor.js2
3 files changed, 13 insertions, 11 deletions
diff --git a/js/src/tests/test262/built-ins/Math/pow/length.js b/js/src/tests/test262/built-ins/Math/pow/length.js
index 0ac918c8fb..a5023e7f7c 100644
--- a/js/src/tests/test262/built-ins/Math/pow/length.js
+++ b/js/src/tests/test262/built-ins/Math/pow/length.js
@@ -22,10 +22,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Math.pow.length, 2);
-
-verifyNotEnumerable(Math.pow, "length");
-verifyNotWritable(Math.pow, "length");
-verifyConfigurable(Math.pow, "length");
+verifyProperty(Math.pow, "length", {
+ value: 2,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Math/pow/name.js b/js/src/tests/test262/built-ins/Math/pow/name.js
index c0caa2c9ad..894ad33926 100644
--- a/js/src/tests/test262/built-ins/Math/pow/name.js
+++ b/js/src/tests/test262/built-ins/Math/pow/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Math.pow.name, "pow");
-
-verifyNotEnumerable(Math.pow, "name");
-verifyNotWritable(Math.pow, "name");
-verifyConfigurable(Math.pow, "name");
+verifyProperty(Math.pow, "name", {
+ value: "pow",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Math/pow/not-a-constructor.js b/js/src/tests/test262/built-ins/Math/pow/not-a-constructor.js
index 00ba4261fc..48510fd0ca 100644
--- a/js/src/tests/test262/built-ins/Math/pow/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Math/pow/not-a-constructor.js
@@ -25,7 +25,7 @@ assert.sameValue(isConstructor(Math.pow), false, 'isConstructor(Math.pow) must r
assert.throws(TypeError, () => {
new Math.pow();
-}, '`new Math.pow()` throws TypeError');
+});
reportCompare(0, 0);