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