summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/round/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Math/round/name.js')
-rw-r--r--js/src/tests/test262/built-ins/Math/round/name.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/js/src/tests/test262/built-ins/Math/round/name.js b/js/src/tests/test262/built-ins/Math/round/name.js
index d1e21d7be4..5b6877e93e 100644
--- a/js/src/tests/test262/built-ins/Math/round/name.js
+++ b/js/src/tests/test262/built-ins/Math/round/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Math.round.name, "round");
-
-verifyNotEnumerable(Math.round, "name");
-verifyNotWritable(Math.round, "name");
-verifyConfigurable(Math.round, "name");
+verifyProperty(Math.round, "name", {
+ value: "round",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);