Index: tests/lib/mirrors/type_mirror_for_type_test.dart |
diff --git a/tests/lib/mirrors/type_mirror_for_type_test.dart b/tests/lib/mirrors/type_mirror_for_type_test.dart |
index 3c3d53a3f16bf77382deb8772829bda8f9037bdc..f90a740f4ffc8f8ee4b8477e1d2e5b134ea5105b 100644 |
--- a/tests/lib/mirrors/type_mirror_for_type_test.dart |
+++ b/tests/lib/mirrors/type_mirror_for_type_test.dart |
@@ -21,8 +21,9 @@ main() { |
// Make sure that we need a type test against the runtime representation of |
// [Type]. |
var a = (new DateTime.now().millisecondsSinceEpoch != 42) |
- ? new C<Type>() : new C<int>(); |
- print (a is C<Type>); |
+ ? new C<Type>() |
+ : new C<int>(); |
+ print(a is C<Type>); |
var typeMirror = reflectType(X); |
var declarationMirror = typeMirror.declarations[#foo]; |