| Index: test/mjsunit/const-redecl.js
 | 
| diff --git a/test/mjsunit/const-redecl.js b/test/mjsunit/const-redecl.js
 | 
| index 26d765b97a312c77f5d6a56dac545383bd20a4eb..945970891b3ead90834c7fbba035beda7e6ff298 100644
 | 
| --- a/test/mjsunit/const-redecl.js
 | 
| +++ b/test/mjsunit/const-redecl.js
 | 
| @@ -55,7 +55,7 @@ function TestLocal(s,e) {
 | 
|  function TestGlobal(s,e) {
 | 
|    // Collect the global properties before the call.
 | 
|    var properties = [];
 | 
| -  for (var key in this) properties.push(key); 
 | 
| +  for (var key in this) properties.push(key);
 | 
|    // Compute the result.
 | 
|    var result;
 | 
|    try {
 | 
| @@ -113,7 +113,7 @@ function TestConflict(def0, def1) {
 | 
|    // Eval second definition.
 | 
|    TestAll("TypeError", def0 + '; eval("' + def1 + '")');
 | 
|    // Eval both definitions separately.
 | 
| -  TestAll("TypeError", 'eval("' + def0 +'"); eval("' + def1 + '")');  
 | 
| +  TestAll("TypeError", 'eval("' + def0 +'"); eval("' + def1 + '")');
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |