summaryrefslogtreecommitdiff
path: root/test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js')
-rw-r--r--test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js b/test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js
index 1d589b0fe..1c622ba8d 100644
--- a/test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js
+++ b/test/built-ins/SetIteratorPrototype/next/this-not-object-throw-prototype-iterator.js
@@ -17,7 +17,10 @@ features:
- Symbol.iterator
---*/
-var set = new Set([[1, 11], [2, 22]]);
+var set = new Set([
+ [1, 11],
+ [2, 22]
+]);
var iterator = set[Symbol.iterator]();
assert.throws(TypeError, function() {