| Index: tests/language_strong/execute_finally11_test.dart
 | 
| diff --git a/tests/language_strong/execute_finally11_test.dart b/tests/language_strong/execute_finally11_test.dart
 | 
| index 9ab66aa02fa0558fc0ef8932e04f27fb03abbcb2..dbe72888d4e22c004e30fbefe23a550694bd1458 100644
 | 
| --- a/tests/language_strong/execute_finally11_test.dart
 | 
| +++ b/tests/language_strong/execute_finally11_test.dart
 | 
| @@ -10,7 +10,9 @@ import "package:expect/expect.dart";
 | 
|  class A {
 | 
|    var field;
 | 
|    start() {}
 | 
| -  stop() { field = 42; }
 | 
| +  stop() {
 | 
| +    field = 42;
 | 
| +  }
 | 
|  }
 | 
|  
 | 
|  class B {
 | 
| @@ -27,8 +29,7 @@ class B {
 | 
|          // variable.
 | 
|          runCompiler.toString();
 | 
|          runCompiler.toString();
 | 
| -      } catch (exception) {
 | 
| -      }
 | 
| +      } catch (exception) {}
 | 
|        rethrow;
 | 
|      } finally {
 | 
|        totalCompileTime.stop();
 | 
| 
 |