| Index: tests/lib_strong/mirrors/reflected_type_helper.dart
 | 
| diff --git a/tests/lib_strong/mirrors/reflected_type_helper.dart b/tests/lib_strong/mirrors/reflected_type_helper.dart
 | 
| index e973854b90555635290d80f012afa0f24f1d1536..bdaae11aaccaf4bc45ab225cb4fc220f800cca5b 100644
 | 
| --- a/tests/lib_strong/mirrors/reflected_type_helper.dart
 | 
| +++ b/tests/lib_strong/mirrors/reflected_type_helper.dart
 | 
| @@ -10,9 +10,8 @@ import 'package:expect/expect.dart';
 | 
|  expectReflectedType(TypeMirror typeMirror, Type expectedType) {
 | 
|    if (expectedType == null) {
 | 
|      Expect.isFalse(typeMirror.hasReflectedType);
 | 
| -    Expect.throws(() => typeMirror.reflectedType,
 | 
| -                  (e) => e is UnsupportedError,
 | 
| -                  "Should not have a reflected type");
 | 
| +    Expect.throws(() => typeMirror.reflectedType, (e) => e is UnsupportedError,
 | 
| +        "Should not have a reflected type");
 | 
|    } else {
 | 
|      Expect.isTrue(typeMirror.hasReflectedType);
 | 
|      Expect.equals(expectedType, typeMirror.reflectedType);
 | 
| 
 |