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