summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/getUint32
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/DataView/prototype/getUint32')
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getUint32/length.js11
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getUint32/name.js11
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getUint32/not-a-constructor.js2
3 files changed, 13 insertions, 11 deletions
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getUint32/length.js b/js/src/tests/test262/built-ins/DataView/prototype/getUint32/length.js
index 5ca99f56e8..544ffc4536 100644
--- a/js/src/tests/test262/built-ins/DataView/prototype/getUint32/length.js
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getUint32/length.js
@@ -23,10 +23,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(DataView.prototype.getUint32.length, 1);
-
-verifyNotEnumerable(DataView.prototype.getUint32, "length");
-verifyNotWritable(DataView.prototype.getUint32, "length");
-verifyConfigurable(DataView.prototype.getUint32, "length");
+verifyProperty(DataView.prototype.getUint32, "length", {
+ value: 1,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getUint32/name.js b/js/src/tests/test262/built-ins/DataView/prototype/getUint32/name.js
index 9e5f2f2a5c..259d024dc4 100644
--- a/js/src/tests/test262/built-ins/DataView/prototype/getUint32/name.js
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getUint32/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(DataView.prototype.getUint32.name, "getUint32");
-
-verifyNotEnumerable(DataView.prototype.getUint32, "name");
-verifyNotWritable(DataView.prototype.getUint32, "name");
-verifyConfigurable(DataView.prototype.getUint32, "name");
+verifyProperty(DataView.prototype.getUint32, "name", {
+ value: "getUint32",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getUint32/not-a-constructor.js b/js/src/tests/test262/built-ins/DataView/prototype/getUint32/not-a-constructor.js
index 423a22224f..a3b3c483b6 100644
--- a/js/src/tests/test262/built-ins/DataView/prototype/getUint32/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getUint32/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
let dv = new DataView(new ArrayBuffer(16)); new dv.getUint32(0, 0);
-}, '`let dv = new DataView(new ArrayBuffer(16)); new dv.getUint32(0, 0)` throws TypeError');
+});
reportCompare(0, 0);