| Index: test/mjsunit/es6/generators-runtime.js
|
| diff --git a/test/mjsunit/es6/generators-runtime.js b/test/mjsunit/es6/generators-runtime.js
|
| index 98015b7f7c811591d72fd6b0ae35a7d0300ead00..5c426b21fdad082eaca9b4037295848a6ec82ba7 100644
|
| --- a/test/mjsunit/es6/generators-runtime.js
|
| +++ b/test/mjsunit/es6/generators-runtime.js
|
| @@ -99,7 +99,7 @@ function TestGeneratorObjectPrototype() {
|
| assertSame(GeneratorObjectPrototype,
|
| Object.getPrototypeOf((function*(){yield 1}).prototype));
|
|
|
| - var expected_property_names = ["next", "throw", "constructor"];
|
| + var expected_property_names = ["next", "return", "throw", "constructor"];
|
| var found_property_names =
|
| Object.getOwnPropertyNames(GeneratorObjectPrototype);
|
|
|
|
|