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