From 8dd16259287f58f9273002717ec4d27e97127719 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:43:14 +0200 Subject: Merging upstream version 127.0. Signed-off-by: Daniel Baumann --- js/src/tests/test262/built-ins/Math/pow/length.js | 11 ++++++----- js/src/tests/test262/built-ins/Math/pow/name.js | 11 ++++++----- js/src/tests/test262/built-ins/Math/pow/not-a-constructor.js | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) (limited to 'js/src/tests/test262/built-ins/Math/pow') 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); -- cgit v1.2.3