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