summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js')
-rw-r--r--js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js
index e4a12de7e7..3f0ea41b60 100644
--- a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js
+++ b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int8Array/name.js
@@ -21,10 +21,11 @@ includes: [propertyHelper.js]
features: [TypedArray]
---*/
-assert.sameValue(Int8Array.name, "Int8Array");
-
-verifyNotEnumerable(Int8Array, "name");
-verifyNotWritable(Int8Array, "name");
-verifyConfigurable(Int8Array, "name");
+verifyProperty(Int8Array, "name", {
+ value: "Int8Array",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);