| Index: tests/lib/mirrors/redirecting_factory_test.dart | 
| diff --git a/tests/lib/mirrors/redirecting_factory_test.dart b/tests/lib/mirrors/redirecting_factory_test.dart | 
| index 6f0ddf2fbbdf9201a5412d0663ca6b1dddb23e66..3cb6a79d1072a53be3a8ff99e6fd1b987332b6cd 100644 | 
| --- a/tests/lib/mirrors/redirecting_factory_test.dart | 
| +++ b/tests/lib/mirrors/redirecting_factory_test.dart | 
| @@ -43,7 +43,7 @@ class Class<T1, T2> { | 
|  | 
| factory Class.redirectingFactoryStringTypeParameters(a, b) = | 
| Class | 
| -        <String>  /// 02: static type warning | 
| +        <String>  //# 02: static type warning | 
| .factoryNoOptional; | 
|  | 
| factory Class.redirectingFactoryTypeParameters(a, b) = | 
| @@ -85,7 +85,7 @@ main() { | 
| Expect.isTrue(instanceMirror.reflectee is Class<int, String>); | 
|  | 
| bool isDart2js = false; | 
| -  isDart2js = true; /// 01: ok | 
| +  isDart2js = true; //# 01: ok | 
| if (isDart2js) return; | 
|  | 
| instanceMirror = classMirror.newInstance( | 
|  |