summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/getUint8
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/DataView/prototype/getUint8')
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getUint8/length.js11
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getUint8/name.js11
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getUint8/not-a-constructor.js2
3 files changed, 13 insertions, 11 deletions
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getUint8/length.js b/js/src/tests/test262/built-ins/DataView/prototype/getUint8/length.js
index aaa458a70e..fd67db7453 100644
--- a/js/src/tests/test262/built-ins/DataView/prototype/getUint8/length.js
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getUint8/length.js
@@ -22,10 +22,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(DataView.prototype.getUint8.length, 1);
-
-verifyNotEnumerable(DataView.prototype.getUint8, "length");
-verifyNotWritable(DataView.prototype.getUint8, "length");
-verifyConfigurable(DataView.prototype.getUint8, "length");
+verifyProperty(DataView.prototype.getUint8, "length", {
+ value: 1,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getUint8/name.js b/js/src/tests/test262/built-ins/DataView/prototype/getUint8/name.js
index 071782c08f..1fd1de4e03 100644
--- a/js/src/tests/test262/built-ins/DataView/prototype/getUint8/name.js
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getUint8/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(DataView.prototype.getUint8.name, "getUint8");
-
-verifyNotEnumerable(DataView.prototype.getUint8, "name");
-verifyNotWritable(DataView.prototype.getUint8, "name");
-verifyConfigurable(DataView.prototype.getUint8, "name");
+verifyProperty(DataView.prototype.getUint8, "name", {
+ value: "getUint8",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getUint8/not-a-constructor.js b/js/src/tests/test262/built-ins/DataView/prototype/getUint8/not-a-constructor.js
index 63c22bc84a..ff3afe1647 100644
--- a/js/src/tests/test262/built-ins/DataView/prototype/getUint8/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getUint8/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
let dv = new DataView(new ArrayBuffer(16)); new dv.getUint8(0, 0);
-}, '`let dv = new DataView(new ArrayBuffer(16)); new dv.getUint8(0, 0)` throws TypeError');
+});
reportCompare(0, 0);