From 24356b0c2cd0b1db6b57f10a7b14e5f8e0b5fae1 Mon Sep 17 00:00:00 2001 From: Leo Balter <leonardo.balter@gmail.com> Date: Wed, 25 Apr 2018 11:39:23 -0300 Subject: [PATCH] fix yaml --- test/built-ins/Atomics/wake/negative-index-throws.js | 2 +- test/built-ins/Atomics/wake/non-int32-typedarray-throws.js | 2 +- test/built-ins/Atomics/wake/non-shared-bufferdata-throws.js | 2 +- test/built-ins/Atomics/wake/not-a-typedarray-throws.js | 2 +- test/built-ins/Atomics/wake/not-an-object-throws.js | 2 +- test/built-ins/Atomics/wake/null-bufferdata-throws.js | 2 +- test/built-ins/Atomics/wake/undefined-index-defaults-to-zero.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/built-ins/Atomics/wake/negative-index-throws.js b/test/built-ins/Atomics/wake/negative-index-throws.js index e0da1bca3b..52b875561a 100644 --- a/test/built-ins/Atomics/wake/negative-index-throws.js +++ b/test/built-ins/Atomics/wake/negative-index-throws.js @@ -3,7 +3,7 @@ /*--- esid: sec-atomics.wake -description: +description: > Throws a RangeError is index < 0 info: | Atomics.wake( typedArray, index, count ) diff --git a/test/built-ins/Atomics/wake/non-int32-typedarray-throws.js b/test/built-ins/Atomics/wake/non-int32-typedarray-throws.js index 4b400f1101..d7b9e547ae 100644 --- a/test/built-ins/Atomics/wake/non-int32-typedarray-throws.js +++ b/test/built-ins/Atomics/wake/non-int32-typedarray-throws.js @@ -3,7 +3,7 @@ /*--- esid: sec-atomics.wake -description: +description: > Throws a TypeError if typedArray arg is not an Int32Array info: | Atomics.wake( typedArray, index, count ) diff --git a/test/built-ins/Atomics/wake/non-shared-bufferdata-throws.js b/test/built-ins/Atomics/wake/non-shared-bufferdata-throws.js index 638d1d13d8..aec2cdb08b 100644 --- a/test/built-ins/Atomics/wake/non-shared-bufferdata-throws.js +++ b/test/built-ins/Atomics/wake/non-shared-bufferdata-throws.js @@ -2,7 +2,7 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-atomics.wake -description: +description: > Throws a TypeError if typedArray.buffer is not a SharedArrayBuffer info: | Atomics.wake( typedArray, index, count ) diff --git a/test/built-ins/Atomics/wake/not-a-typedarray-throws.js b/test/built-ins/Atomics/wake/not-a-typedarray-throws.js index 8639a141e2..7acf27e8c0 100644 --- a/test/built-ins/Atomics/wake/not-a-typedarray-throws.js +++ b/test/built-ins/Atomics/wake/not-a-typedarray-throws.js @@ -2,7 +2,7 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-atomics.wake -description: +description: > Throws a TypeError if the typedArray arg is not a TypedArray object info: | Atomics.wake( typedArray, index, count ) diff --git a/test/built-ins/Atomics/wake/not-an-object-throws.js b/test/built-ins/Atomics/wake/not-an-object-throws.js index e01e026562..b8ca158b4f 100644 --- a/test/built-ins/Atomics/wake/not-an-object-throws.js +++ b/test/built-ins/Atomics/wake/not-an-object-throws.js @@ -2,7 +2,7 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-atomics.wake -description: +description: > Throws a TypeError if typedArray arg is not an Object info: | Atomics.wake( typedArray, index, count ) diff --git a/test/built-ins/Atomics/wake/null-bufferdata-throws.js b/test/built-ins/Atomics/wake/null-bufferdata-throws.js index 81be20179b..ad38f7432e 100644 --- a/test/built-ins/Atomics/wake/null-bufferdata-throws.js +++ b/test/built-ins/Atomics/wake/null-bufferdata-throws.js @@ -2,7 +2,7 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-atomics.wake -description: +description: > A null value for bufferData throws a TypeError info: | Atomics.wake( typedArray, index, count ) diff --git a/test/built-ins/Atomics/wake/undefined-index-defaults-to-zero.js b/test/built-ins/Atomics/wake/undefined-index-defaults-to-zero.js index 78f40466a4..aeb452720d 100644 --- a/test/built-ins/Atomics/wake/undefined-index-defaults-to-zero.js +++ b/test/built-ins/Atomics/wake/undefined-index-defaults-to-zero.js @@ -3,7 +3,7 @@ /*--- esid: sec-atomics.wake -description: +description: > An undefined index arg should translate to 0 info: | Atomics.wake( typedArray, index, count ) -- GitLab