| Index: test/mjsunit/es6/classes-proxy.js | 
| diff --git a/test/mjsunit/es6/classes-proxy.js b/test/mjsunit/es6/classes-proxy.js | 
| index d438b01ad8a3a5022f12084c695b39f4193e5f96..40a77035cc56a2a5643c320fe8ea4f5ea0d4453c 100644 | 
| --- a/test/mjsunit/es6/classes-proxy.js | 
| +++ b/test/mjsunit/es6/classes-proxy.js | 
| @@ -36,7 +36,7 @@ function CreateConstructableProxy(handler) { | 
|  | 
| var o = Reflect.construct(Number, [100], proxy); | 
| assertEquals(["get trap"], log); | 
| -  assertTrue(Object.getPrototypeOf(o) === Object.prototype); | 
| +  assertTrue(Object.getPrototypeOf(o) === Number.prototype); | 
| assertEquals(100, Number.prototype.valueOf.call(o)); | 
| })(); | 
|  | 
|  |