| Index: tests/language_strong/execute_finally4_test.dart
 | 
| diff --git a/tests/language_strong/execute_finally4_test.dart b/tests/language_strong/execute_finally4_test.dart
 | 
| index ab0d0230f3f8cec20ba9e197af1806e49e978b36..fcc308cf30f83cca15c7893c3edaab9b443edada 100644
 | 
| --- a/tests/language_strong/execute_finally4_test.dart
 | 
| +++ b/tests/language_strong/execute_finally4_test.dart
 | 
| @@ -6,9 +6,8 @@
 | 
|  
 | 
|  import "package:expect/expect.dart";
 | 
|  
 | 
| -
 | 
|  class Helper {
 | 
| -  Helper() : i = 0 { }
 | 
| +  Helper() : i = 0 {}
 | 
|  
 | 
|    int f1() {
 | 
|      try {
 | 
| @@ -18,12 +17,12 @@ class Helper {
 | 
|      } finally {
 | 
|        i = i + 10;
 | 
|      }
 | 
| -    return i + 200;  // Should return here with i = 211.
 | 
| +    return i + 200; // Should return here with i = 211.
 | 
|      try {
 | 
|        int j;
 | 
|        j = func();
 | 
|      } finally {
 | 
| -      i = i + 10;  // Should not get executed as part of return above.
 | 
| +      i = i + 10; // Should not get executed as part of return above.
 | 
|      }
 | 
|    }
 | 
|  
 | 
| 
 |