| Index: tests/language_strong/default_factory_library_test.dart
 | 
| diff --git a/tests/language_strong/default_factory_library_test.dart b/tests/language_strong/default_factory_library_test.dart
 | 
| index ad7291b9234d93a7d0aeb57a727c88bf42448efd..31c09a0250fcfad7540ee3b77dae589e26e653ac 100644
 | 
| --- a/tests/language_strong/default_factory_library_test.dart
 | 
| +++ b/tests/language_strong/default_factory_library_test.dart
 | 
| @@ -5,17 +5,25 @@
 | 
|  // Dart test program for testing factories defined across libraries
 | 
|  
 | 
|  library test;
 | 
| +
 | 
|  import "package:expect/expect.dart";
 | 
|  import "default_factory_library.dart" as lib;
 | 
|  
 | 
|  class B implements lib.A, C {
 | 
| -  int methodA() { return 1; }
 | 
| -  int methodB() { return 2; }
 | 
| +  int methodA() {
 | 
| +    return 1;
 | 
| +  }
 | 
| +
 | 
| +  int methodB() {
 | 
| +    return 2;
 | 
| +  }
 | 
|  }
 | 
|  
 | 
|  abstract class C implements lib.A {
 | 
|    // Referenced from an abstract class in another library
 | 
| -  factory C.A () { return new B(); }
 | 
| +  factory C.A() {
 | 
| +    return new B();
 | 
| +  }
 | 
|  }
 | 
|  
 | 
|  main() {
 | 
| 
 |