diff --git a/test/built-ins/Atomics/wake/negative-index-throws.js b/test/built-ins/Atomics/wake/negative-index-throws.js
index e0da1bca3b289b44459282bec0659e5bc8c6e930..52b875561afae36b39b7287c0c51c5b7a1ac7fd5 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 4b400f110158689b0688af04c0cd9d91dddc3a8f..d7b9e547aed6953e809e1e50332ce702604ebeb5 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 638d1d13d84377412e0a8d101b944a4840f8071f..aec2cdb08ba048af541b1942d2212881b1279ff6 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 8639a141e2c556c9eead096f8986af96001a88c6..7acf27e8c02c790a7e04bcc71caeae0d7ae2ecbe 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 e01e0265628cd47da763763951d483c78b83de41..b8ca158b4fad03d57bf5424552e94dfbfccce6a6 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 81be20179bb7bd205851c81873d76508ddede41c..ad38f7432e8830c233b2b7beb9bcd4f56b2fb987 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 78f40466a4e12333a2c4ff9682e5470af5d29d87..aeb452720d0d9f5323a607b31b2be82969113eae 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 )