| Index: tests/standalone/io/file_constructor_test.dart
 | 
| diff --git a/tests/standalone/io/file_constructor_test.dart b/tests/standalone/io/file_constructor_test.dart
 | 
| index 251e1adfd7b2cee072a169d3732cba81ffc6636e..251348b10174ecd988ea81aa21e78905b7fa3a02 100644
 | 
| --- a/tests/standalone/io/file_constructor_test.dart
 | 
| +++ b/tests/standalone/io/file_constructor_test.dart
 | 
| @@ -13,15 +13,15 @@ void main() {
 | 
|    try {
 | 
|      new File(null);
 | 
|      Expect.fail('ArgumentError expected.');
 | 
| -  } on ArgumentError catch(e) {
 | 
| +  } on ArgumentError catch (e) {
 | 
|      // Expected.
 | 
|    }
 | 
|    try {
 | 
|      new File(1);
 | 
|      Expect.fail('Error expected.');
 | 
| -  } on ArgumentError catch(e) {
 | 
| +  } on ArgumentError catch (e) {
 | 
|      if (developerMode) rethrow;
 | 
| -  } on TypeError catch(e) {
 | 
| +  } on TypeError catch (e) {
 | 
|      if (!developerMode) rethrow;
 | 
|    }
 | 
|  }
 | 
| 
 |