| Index: tests/language_strong/execute_finally7_test.dart
 | 
| diff --git a/tests/language_strong/execute_finally7_test.dart b/tests/language_strong/execute_finally7_test.dart
 | 
| index 7ba11aa42321a8e60d7da648732260a4e956db9f..51e524f396b4c949720b29627d4f2c6cf6ed0e51 100644
 | 
| --- a/tests/language_strong/execute_finally7_test.dart
 | 
| +++ b/tests/language_strong/execute_finally7_test.dart
 | 
| @@ -6,7 +6,6 @@
 | 
|  
 | 
|  import "package:expect/expect.dart";
 | 
|  
 | 
| -
 | 
|  class MyException {
 | 
|    const MyException(String message) : message_ = message;
 | 
|    final String message_;
 | 
| @@ -32,7 +31,7 @@ class Helper {
 | 
|          }
 | 
|          i++;
 | 
|        }
 | 
| -      for(int i = 0; i < 10; i++) {
 | 
| +      for (int i = 0; i < 10; i++) {
 | 
|          a[i]();
 | 
|        }
 | 
|      } on MyException catch (exception) {
 | 
| 
 |