| Index: test/mjsunit/harmony/generators-runtime.js
|
| diff --git a/test/mjsunit/harmony/generators-runtime.js b/test/mjsunit/harmony/generators-runtime.js
|
| index d28140c193d5605f7c81aad26ba158f0ecae2a40..0182fc349bcc7e00eb0e6efd439b027caded759a 100644
|
| --- a/test/mjsunit/harmony/generators-runtime.js
|
| +++ b/test/mjsunit/harmony/generators-runtime.js
|
| @@ -84,8 +84,7 @@ function TestGeneratorObjectPrototype() {
|
| assertSame(GeneratorObjectPrototype,
|
| Object.getPrototypeOf((function*(){yield 1}).prototype));
|
|
|
| - var expected_property_names = ["next", "send", "throw", "close",
|
| - "constructor"];
|
| + var expected_property_names = ["next", "send", "throw", "constructor"];
|
| var found_property_names =
|
| Object.getOwnPropertyNames(GeneratorObjectPrototype);
|
|
|
|
|