summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/unicode
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/prototype/unicode')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/prototype/unicode/length.js11
-rw-r--r--js/src/tests/test262/built-ins/RegExp/prototype/unicode/name.js11
2 files changed, 12 insertions, 10 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/unicode/length.js b/js/src/tests/test262/built-ins/RegExp/prototype/unicode/length.js
index 127e2d0428..c661157d48 100644
--- a/js/src/tests/test262/built-ins/RegExp/prototype/unicode/length.js
+++ b/js/src/tests/test262/built-ins/RegExp/prototype/unicode/length.js
@@ -21,10 +21,11 @@ includes: [propertyHelper.js]
var getter = Object.getOwnPropertyDescriptor(RegExp.prototype, 'unicode').get;
-assert.sameValue(getter.length, 0);
-
-verifyNotEnumerable(getter, 'length');
-verifyNotWritable(getter, 'length');
-verifyConfigurable(getter, 'length');
+verifyProperty(getter, "length", {
+ value: 0,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/unicode/name.js b/js/src/tests/test262/built-ins/RegExp/prototype/unicode/name.js
index 1e1858b46d..a152d919b5 100644
--- a/js/src/tests/test262/built-ins/RegExp/prototype/unicode/name.js
+++ b/js/src/tests/test262/built-ins/RegExp/prototype/unicode/name.js
@@ -28,10 +28,11 @@ includes: [propertyHelper.js]
var getter = Object.getOwnPropertyDescriptor(RegExp.prototype, 'unicode').get;
-assert.sameValue(getter.name, 'get unicode');
-
-verifyNotEnumerable(getter, 'name');
-verifyNotWritable(getter, 'name');
-verifyConfigurable(getter, 'name');
+verifyProperty(getter, "name", {
+ value: "get unicode",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);