From 710fcbb3837c0ec0d5dfeec7a3a7cc3aa828219f Mon Sep 17 00:00:00 2001
From: Leonardo Balter <leonardo.balter@gmail.com>
Date: Tue, 30 Jun 2015 15:09:05 -0400
Subject: [PATCH] Map.prototype[Symbol.iterator]

---
 test/built-ins/Map/prototype/Symbol.iterator.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/test/built-ins/Map/prototype/Symbol.iterator.js b/test/built-ins/Map/prototype/Symbol.iterator.js
index 3c6a1d6e65..25de1616f3 100644
--- a/test/built-ins/Map/prototype/Symbol.iterator.js
+++ b/test/built-ins/Map/prototype/Symbol.iterator.js
@@ -1,19 +1,19 @@
 // Copyright (C) 2014 the V8 project authors. All rights reserved.
 // This code is governed by the BSD license found in the LICENSE file.
-
 /*---
+es6id: 23.1.3.12
 description: Initial state of the Symbol.iterator property
 info: >
-    The initial value of the @@iterator property is the same function object as
-    the initial value of the entries property.
+  The initial value of the @@iterator property is the same function object as
+  the initial value of the entries property.
 
-    Per ES6 section 17, the method should exist on the Array prototype, and it
-    should be writable and configurable, but not enumerable.
+  Per ES6 section 17, the method should exist on the Array prototype, and it
+  should be writable and configurable, but not enumerable.
 includes: [propertyHelper.js]
 features: [Symbol.iterator]
-es6id: 23.1.3.12
 ---*/
 
+assert.sameValue(Map.prototype[Symbol.iterator], Map.prototype.entries);
 verifyNotEnumerable(Map.prototype, Symbol.iterator);
 verifyWritable(Map.prototype, Symbol.iterator);
 verifyConfigurable(Map.prototype, Symbol.iterator);
-- 
GitLab