summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/fround
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Math/fround')
-rw-r--r--js/src/tests/test262/built-ins/Math/fround/length.js11
-rw-r--r--js/src/tests/test262/built-ins/Math/fround/name.js11
-rw-r--r--js/src/tests/test262/built-ins/Math/fround/not-a-constructor.js2
3 files changed, 13 insertions, 11 deletions
diff --git a/js/src/tests/test262/built-ins/Math/fround/length.js b/js/src/tests/test262/built-ins/Math/fround/length.js
index 56190466ae..7020d5354e 100644
--- a/js/src/tests/test262/built-ins/Math/fround/length.js
+++ b/js/src/tests/test262/built-ins/Math/fround/length.js
@@ -22,10 +22,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Math.fround.length, 1);
-
-verifyNotEnumerable(Math.fround, "length");
-verifyNotWritable(Math.fround, "length");
-verifyConfigurable(Math.fround, "length");
+verifyProperty(Math.fround, "length", {
+ value: 1,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Math/fround/name.js b/js/src/tests/test262/built-ins/Math/fround/name.js
index c1f5ac6270..4385f3cb77 100644
--- a/js/src/tests/test262/built-ins/Math/fround/name.js
+++ b/js/src/tests/test262/built-ins/Math/fround/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Math.fround.name, "fround");
-
-verifyNotEnumerable(Math.fround, "name");
-verifyNotWritable(Math.fround, "name");
-verifyConfigurable(Math.fround, "name");
+verifyProperty(Math.fround, "name", {
+ value: "fround",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Math/fround/not-a-constructor.js b/js/src/tests/test262/built-ins/Math/fround/not-a-constructor.js
index d82e346651..029a31f66e 100644
--- a/js/src/tests/test262/built-ins/Math/fround/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Math/fround/not-a-constructor.js
@@ -25,7 +25,7 @@ assert.sameValue(isConstructor(Math.fround), false, 'isConstructor(Math.fround)
assert.throws(TypeError, () => {
new Math.fround();
-}, '`new Math.fround()` throws TypeError');
+});
reportCompare(0, 0);