| Index: tests/language_strong/f_bounded_quantification4_test.dart
 | 
| diff --git a/tests/language_strong/f_bounded_quantification4_test.dart b/tests/language_strong/f_bounded_quantification4_test.dart
 | 
| index 922e225f918f2ff377571ec3a106ebd5ba80cfac..ddd6258f528cb5084f009f8fb3727de9286d67a6 100644
 | 
| --- a/tests/language_strong/f_bounded_quantification4_test.dart
 | 
| +++ b/tests/language_strong/f_bounded_quantification4_test.dart
 | 
| @@ -6,11 +6,10 @@
 | 
|  
 | 
|  import "package:expect/expect.dart";
 | 
|  
 | 
| -class A<T extends B<T>> { }
 | 
| +class A<T extends B<T>> {}
 | 
|  
 | 
| -class B<T> extends A<T> { }
 | 
| +class B<T> extends A<T> {}
 | 
|  
 | 
|  main() {
 | 
|    Expect.equals("B<B>", new B<B>().runtimeType.toString());
 | 
|  }
 | 
| -
 | 
| 
 |