summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/fround/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Math/fround/name.js')
-rw-r--r--js/src/tests/test262/built-ins/Math/fround/name.js11
1 files changed, 6 insertions, 5 deletions
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);