Chromium Code Reviews| Index: test/mjsunit/prototype.js |
| diff --git a/test/mjsunit/prototype.js b/test/mjsunit/prototype.js |
| index bfc1a799d4b00fa5929da71cfb5385f5145ea2b0..e3f2f550543cc914a269295472313a4ecd163316 100644 |
| --- a/test/mjsunit/prototype.js |
| +++ b/test/mjsunit/prototype.js |
| @@ -67,7 +67,7 @@ var p = new Object(); |
| p.y = 1; |
| new D(); |
| -D.prototype = p |
| +D.prototype = p; |
| assertEquals(1, (new D).y); |