summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-01-05 12:29:17 -0500
committerRick Waldron <waldron.rick@gmail.com>2018-01-05 12:29:17 -0500
commit89ac510488e93af4902cd2bae085df256290bbbd (patch)
tree704da8d0ebefcc1583118d7aacd5f03765dad702 /test/built-ins/TypedArray
parent92a2621901a7796f60edb1ad1b33a12dd296078e (diff)
downloadqtdeclarative-testsuites-89ac510488e93af4902cd2bae085df256290bbbd.tar.gz
Frontmatter: fixup "description: |" to "description: >"
Diffstat (limited to 'test/built-ins/TypedArray')
-rw-r--r--test/built-ins/TypedArray/prototype/Symbol.toStringTag/return-typedarrayname.js2
-rw-r--r--test/built-ins/TypedArray/prototype/buffer/return-buffer.js2
-rw-r--r--test/built-ins/TypedArray/prototype/buffer/this-has-no-typedarrayname-internal.js2
-rw-r--r--test/built-ins/TypedArray/prototype/byteLength/return-bytelength.js2
-rw-r--r--test/built-ins/TypedArray/prototype/byteLength/this-has-no-typedarrayname-internal.js2
-rw-r--r--test/built-ins/TypedArray/prototype/byteOffset/return-byteoffset.js2
-rw-r--r--test/built-ins/TypedArray/prototype/byteOffset/this-has-no-typedarrayname-internal.js2
-rw-r--r--test/built-ins/TypedArray/prototype/copyWithin/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/entries/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/every/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/fill/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/filter/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/forEach/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/includes/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/indexOf/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/join/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/keys/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/lastIndexOf/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/length/return-length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/length/this-has-no-typedarrayname-internal.js2
-rw-r--r--test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-empty-length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-positive-length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/map/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/reduce/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/reduceRight/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/reverse/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/set/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/slice/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/some/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/sort/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/subarray/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/this-is-not-typedarray-instance.js2
-rw-r--r--test/built-ins/TypedArray/prototype/values/this-is-not-typedarray-instance.js2
35 files changed, 35 insertions, 35 deletions
diff --git a/test/built-ins/TypedArray/prototype/Symbol.toStringTag/return-typedarrayname.js b/test/built-ins/TypedArray/prototype/Symbol.toStringTag/return-typedarrayname.js
index ef28bad04..7c6be3c18 100644
--- a/test/built-ins/TypedArray/prototype/Symbol.toStringTag/return-typedarrayname.js
+++ b/test/built-ins/TypedArray/prototype/Symbol.toStringTag/return-typedarrayname.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-%typedarray%.prototype-@@tostringtag
-description: |
+description: >
Return value from the [[TypedArrayName]] internal slot
info: |
22.2.3.32 get %TypedArray%.prototype [ @@toStringTag ]
diff --git a/test/built-ins/TypedArray/prototype/buffer/return-buffer.js b/test/built-ins/TypedArray/prototype/buffer/return-buffer.js
index f2433f7f0..82420a6df 100644
--- a/test/built-ins/TypedArray/prototype/buffer/return-buffer.js
+++ b/test/built-ins/TypedArray/prototype/buffer/return-buffer.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 22.2.3.1
-description: |
+description: >
Return buffer from [[ViewedArrayBuffer]] internal slot
info: |
22.2.3.1 get %TypedArray%.prototype.buffer
diff --git a/test/built-ins/TypedArray/prototype/buffer/this-has-no-typedarrayname-internal.js b/test/built-ins/TypedArray/prototype/buffer/this-has-no-typedarrayname-internal.js
index 89191a85c..9b6b28db8 100644
--- a/test/built-ins/TypedArray/prototype/buffer/this-has-no-typedarrayname-internal.js
+++ b/test/built-ins/TypedArray/prototype/buffer/this-has-no-typedarrayname-internal.js
@@ -3,7 +3,7 @@
/*---
esid: sec-get-%typedarray%.prototype.buffer
es6id: 22.2.3.1
-description: |
+description: >
Throws a TypeError exception when `this` does not have a [[TypedArrayName]]
internal slot
info: |
diff --git a/test/built-ins/TypedArray/prototype/byteLength/return-bytelength.js b/test/built-ins/TypedArray/prototype/byteLength/return-bytelength.js
index ab16507a8..f801c9ac3 100644
--- a/test/built-ins/TypedArray/prototype/byteLength/return-bytelength.js
+++ b/test/built-ins/TypedArray/prototype/byteLength/return-bytelength.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 22.2.3.2
-description: |
+description: >
Return value from [[ByteLength]] internal slot
info: |
22.2.3.2 get %TypedArray%.prototype.byteLength
diff --git a/test/built-ins/TypedArray/prototype/byteLength/this-has-no-typedarrayname-internal.js b/test/built-ins/TypedArray/prototype/byteLength/this-has-no-typedarrayname-internal.js
index d93356067..f8c050544 100644
--- a/test/built-ins/TypedArray/prototype/byteLength/this-has-no-typedarrayname-internal.js
+++ b/test/built-ins/TypedArray/prototype/byteLength/this-has-no-typedarrayname-internal.js
@@ -3,7 +3,7 @@
/*---
esid: sec-get-%typedarray%.prototype.bytelength
es6id: 22.2.3.2
-description: |
+description: >
Throws a TypeError exception when `this` does not have a [[TypedArrayName]]
internal slot
info: |
diff --git a/test/built-ins/TypedArray/prototype/byteOffset/return-byteoffset.js b/test/built-ins/TypedArray/prototype/byteOffset/return-byteoffset.js
index bb6e745af..1663d4797 100644
--- a/test/built-ins/TypedArray/prototype/byteOffset/return-byteoffset.js
+++ b/test/built-ins/TypedArray/prototype/byteOffset/return-byteoffset.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 22.2.3.3
-description: |
+description: >
Return value from [[ByteOffset]] internal slot
info: |
22.2.3.3 get %TypedArray%.prototype.byteOffset
diff --git a/test/built-ins/TypedArray/prototype/byteOffset/this-has-no-typedarrayname-internal.js b/test/built-ins/TypedArray/prototype/byteOffset/this-has-no-typedarrayname-internal.js
index c06d7971a..dbd36a027 100644
--- a/test/built-ins/TypedArray/prototype/byteOffset/this-has-no-typedarrayname-internal.js
+++ b/test/built-ins/TypedArray/prototype/byteOffset/this-has-no-typedarrayname-internal.js
@@ -3,7 +3,7 @@
/*---
esid: sec-get-%typedarray%.prototype.byteoffset
es6id: 22.2.3.3
-description: |
+description: >
Throws a TypeError exception when `this` does not have a [[TypedArrayName]]
internal slot
info: |
diff --git a/test/built-ins/TypedArray/prototype/copyWithin/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/copyWithin/this-is-not-typedarray-instance.js
index eabea2d35..ad6932f62 100644
--- a/test/built-ins/TypedArray/prototype/copyWithin/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/copyWithin/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.copywithin
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.5 %TypedArray%.prototype.copyWithin (target, start [ , end ] )
diff --git a/test/built-ins/TypedArray/prototype/entries/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/entries/this-is-not-typedarray-instance.js
index 68d5bb717..704171d58 100644
--- a/test/built-ins/TypedArray/prototype/entries/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/entries/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.entries
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.6 %TypedArray%.prototype.entries ( )
diff --git a/test/built-ins/TypedArray/prototype/every/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/every/this-is-not-typedarray-instance.js
index 3369c441b..f3402ec3d 100644
--- a/test/built-ins/TypedArray/prototype/every/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/every/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.every
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.7 %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/fill/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/fill/this-is-not-typedarray-instance.js
index 268dd46af..94f2da388 100644
--- a/test/built-ins/TypedArray/prototype/fill/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/fill/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.fill
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.8 %TypedArray%.prototype.fill (value [ , start [ , end ] ] )
diff --git a/test/built-ins/TypedArray/prototype/filter/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/filter/this-is-not-typedarray-instance.js
index 54b234d05..0781d4036 100644
--- a/test/built-ins/TypedArray/prototype/filter/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/filter/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.filter
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.9 %TypedArray%.prototype.filter ( callbackfn [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/find/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/find/this-is-not-typedarray-instance.js
index 934627010..7bc0aa43f 100644
--- a/test/built-ins/TypedArray/prototype/find/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/find/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.10 %TypedArray%.prototype.find (predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/findIndex/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/findIndex/this-is-not-typedarray-instance.js
index d1746780b..251eef5df 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.11 %TypedArray%.prototype.findIndex ( predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/forEach/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/forEach/this-is-not-typedarray-instance.js
index b58aadc46..8223b6c0f 100644
--- a/test/built-ins/TypedArray/prototype/forEach/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/forEach/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.foreach
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.12 %TypedArray%.prototype.forEach ( callbackfn [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/includes/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/includes/this-is-not-typedarray-instance.js
index 056838ad2..68eb6e9ea 100644
--- a/test/built-ins/TypedArray/prototype/includes/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/includes/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.includes
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.14 %TypedArray%.prototype.includes ( searchElement [ , fromIndex ] )
diff --git a/test/built-ins/TypedArray/prototype/indexOf/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/indexOf/this-is-not-typedarray-instance.js
index 7c2a4860a..ce17459bf 100644
--- a/test/built-ins/TypedArray/prototype/indexOf/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/indexOf/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.indexof
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.13 %TypedArray%.prototype.indexOf (searchElement [ , fromIndex ] )
diff --git a/test/built-ins/TypedArray/prototype/join/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/join/this-is-not-typedarray-instance.js
index c2e30dc4d..b9b9f6c6c 100644
--- a/test/built-ins/TypedArray/prototype/join/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/join/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.join
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.15 %TypedArray%.prototype.join ( separator )
diff --git a/test/built-ins/TypedArray/prototype/keys/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/keys/this-is-not-typedarray-instance.js
index d7943de2f..742324de1 100644
--- a/test/built-ins/TypedArray/prototype/keys/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/keys/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.keys
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.16 %TypedArray%.prototype.keys ( )
diff --git a/test/built-ins/TypedArray/prototype/lastIndexOf/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/lastIndexOf/this-is-not-typedarray-instance.js
index b128baf94..4e5feba4c 100644
--- a/test/built-ins/TypedArray/prototype/lastIndexOf/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/lastIndexOf/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.lastindexof
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.17 %TypedArray%.prototype.lastIndexOf ( searchElement [ , fromIndex ] )
diff --git a/test/built-ins/TypedArray/prototype/length/return-length.js b/test/built-ins/TypedArray/prototype/length/return-length.js
index 8b73a8b3e..e7be300ed 100644
--- a/test/built-ins/TypedArray/prototype/length/return-length.js
+++ b/test/built-ins/TypedArray/prototype/length/return-length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-%typedarray%.prototype.length
-description: |
+description: >
Return value from the [[ArrayLength]] internal slot
info: |
22.2.3.18 get %TypedArray%.prototype.length
diff --git a/test/built-ins/TypedArray/prototype/length/this-has-no-typedarrayname-internal.js b/test/built-ins/TypedArray/prototype/length/this-has-no-typedarrayname-internal.js
index 340eee903..c4f510009 100644
--- a/test/built-ins/TypedArray/prototype/length/this-has-no-typedarrayname-internal.js
+++ b/test/built-ins/TypedArray/prototype/length/this-has-no-typedarrayname-internal.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-%typedarray%.prototype.length
-description: |
+description: >
Throws a TypeError exception when `this` does not have a [[TypedArrayName]]
internal slot
info: |
diff --git a/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-empty-length.js b/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-empty-length.js
index 5db305bbf..a7b475ec4 100644
--- a/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-empty-length.js
+++ b/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-empty-length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.map
-description: |
+description: >
Returns a new typedArray instance from the same constructor with the same
length and a new buffer object - testing on an instance with length == 0
info: |
diff --git a/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-positive-length.js b/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-positive-length.js
index 16176b112..61696e503 100644
--- a/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-positive-length.js
+++ b/test/built-ins/TypedArray/prototype/map/return-new-typedarray-from-positive-length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.map
-description: |
+description: >
Returns a new typedArray instance from the same constructor with the same
length and a new buffer object - testing on an instance with length > 0
info: |
diff --git a/test/built-ins/TypedArray/prototype/map/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/map/this-is-not-typedarray-instance.js
index 657cc3ac6..db71657b2 100644
--- a/test/built-ins/TypedArray/prototype/map/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/map/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.map
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.19 %TypedArray%.prototype.map ( callbackfn [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/reduce/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/reduce/this-is-not-typedarray-instance.js
index 6497807f4..f6d4801ad 100644
--- a/test/built-ins/TypedArray/prototype/reduce/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/reduce/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.reduce
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.20 %TypedArray%.prototype.reduce ( callbackfn [ , initialValue ] )
diff --git a/test/built-ins/TypedArray/prototype/reduceRight/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/reduceRight/this-is-not-typedarray-instance.js
index ec8db4a81..453a5d698 100644
--- a/test/built-ins/TypedArray/prototype/reduceRight/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/reduceRight/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.reduceright
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.21 %TypedArray%.prototype.reduceRight ( callbackfn [ , initialValue ] )
diff --git a/test/built-ins/TypedArray/prototype/reverse/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/reverse/this-is-not-typedarray-instance.js
index c54705d3e..3765d8511 100644
--- a/test/built-ins/TypedArray/prototype/reverse/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/reverse/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.reverse
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.22 %TypedArray%.prototype.reverse ( )
diff --git a/test/built-ins/TypedArray/prototype/set/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/set/this-is-not-typedarray-instance.js
index 60adef3d1..d26837c23 100644
--- a/test/built-ins/TypedArray/prototype/set/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/set/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.set-overloaded-offset
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.23 %TypedArray%.prototype.set
diff --git a/test/built-ins/TypedArray/prototype/slice/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/slice/this-is-not-typedarray-instance.js
index f3575a58e..f36def6e9 100644
--- a/test/built-ins/TypedArray/prototype/slice/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/slice/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.slice
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.24 %TypedArray%.prototype.slice ( start, end )
diff --git a/test/built-ins/TypedArray/prototype/some/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/some/this-is-not-typedarray-instance.js
index 5d403546d..acfbe6dbb 100644
--- a/test/built-ins/TypedArray/prototype/some/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/some/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.some
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.25 %TypedArray%.prototype.some ( callbackfn [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/sort/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/sort/this-is-not-typedarray-instance.js
index 7520f1065..d19b4c439 100644
--- a/test/built-ins/TypedArray/prototype/sort/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/sort/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.sort
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.26 %TypedArray%.prototype.sort ( comparefn )
diff --git a/test/built-ins/TypedArray/prototype/subarray/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/subarray/this-is-not-typedarray-instance.js
index 6028044d6..b8b3b0f1d 100644
--- a/test/built-ins/TypedArray/prototype/subarray/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/subarray/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.subarray
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.9 %TypedArray%.prototype.subarray( begin , end )
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/toLocaleString/this-is-not-typedarray-instance.js
index b1fa20562..f9e1fd426 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.tolocalestring
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.28 %TypedArray%.prototype.toLocaleString ([ reserved1 [ , reserved2 ] ])
diff --git a/test/built-ins/TypedArray/prototype/values/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/values/this-is-not-typedarray-instance.js
index 9d8e8c700..1fb43d95b 100644
--- a/test/built-ins/TypedArray/prototype/values/this-is-not-typedarray-instance.js
+++ b/test/built-ins/TypedArray/prototype/values/this-is-not-typedarray-instance.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.values
-description: |
+description: >
Throws a TypeError exception when `this` is not a TypedArray instance
info: |
22.2.3.30 %TypedArray%.prototype.values ( )