| Index: test/mjsunit/es6/collections.js
|
| diff --git a/test/mjsunit/es6/collections.js b/test/mjsunit/es6/collections.js
|
| index 92cd087839f13e8c5f9c3feac4abcdf29ff36a36..7f8b4a5feba1125fd22596486bdae07c2571e989 100644
|
| --- a/test/mjsunit/es6/collections.js
|
| +++ b/test/mjsunit/es6/collections.js
|
| @@ -1192,6 +1192,7 @@ function TestSetConstructorIterableValue(ctor) {
|
| get: function() {
|
| assertEquals('object', typeof this);
|
| return function() {
|
| + assertEquals('number', typeof this);
|
| return oneAndTwo.keys();
|
| };
|
| },
|
| @@ -1382,6 +1383,7 @@ function TestMapConstructorIterableValue(ctor) {
|
| get: function() {
|
| assertEquals('object', typeof this);
|
| return function() {
|
| + assertEquals('number', typeof this);
|
| return oneAndTwo.entries();
|
| };
|
| },
|
|
|