summaryrefslogtreecommitdiff
path: root/test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.js')
-rw-r--r--test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.js b/test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.js
index 968f79a34..56d0a4cd4 100644
--- a/test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.js
+++ b/test/built-ins/MapIteratorPrototype/next/this-not-object-throw-entries.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.entries();
assert.throws(TypeError, function() {