summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/startsWith/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/prototype/startsWith/name.js')
-rw-r--r--js/src/tests/test262/built-ins/String/prototype/startsWith/name.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/js/src/tests/test262/built-ins/String/prototype/startsWith/name.js b/js/src/tests/test262/built-ins/String/prototype/startsWith/name.js
index 4baa4a3076..ba8907b725 100644
--- a/js/src/tests/test262/built-ins/String/prototype/startsWith/name.js
+++ b/js/src/tests/test262/built-ins/String/prototype/startsWith/name.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- String.prototype.startsWith.name, 'startsWith',
- 'The value of `String.prototype.startsWith.name` is `"startsWith"`'
-);
-
-verifyNotEnumerable(String.prototype.startsWith, 'name');
-verifyNotWritable(String.prototype.startsWith, 'name');
-verifyConfigurable(String.prototype.startsWith, 'name');
+verifyProperty(String.prototype.startsWith, "name", {
+ value: "startsWith",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);