| Index: test/mjsunit/harmony/super.js
|
| diff --git a/test/mjsunit/harmony/super.js b/test/mjsunit/harmony/super.js
|
| index 651f3dca3f2da6617ad774815d61b9cc941d4a90..ae1c18c008197f9fbb2d069f604e0bc70e0037d6 100644
|
| --- a/test/mjsunit/harmony/super.js
|
| +++ b/test/mjsunit/harmony/super.js
|
| @@ -2021,8 +2021,8 @@ TestKeyedSetterCreatingOwnPropertiesNonConfigurable(42, 43, 44);
|
| class F extends Object { }
|
| var f = new F(42);
|
|
|
| - // TODO(dslomov,arv): Fix this. BUG=v8:3886.
|
| - assertInstanceof(f, Number);
|
| + assertInstanceof(f, F);
|
| + assertInstanceof(f, Object);
|
| }());
|
|
|
|
|
|
|