| Index: tests/lib/mirrors/set_field_with_final_inheritance_test.dart
 | 
| diff --git a/tests/lib/mirrors/set_field_with_final_inheritance_test.dart b/tests/lib/mirrors/set_field_with_final_inheritance_test.dart
 | 
| index 3d5b5823cb24295de763d95c87bb41d8b1a2eddd..ca167233beff8db748a6c4de01fa4a3d5dc03d0a 100644
 | 
| --- a/tests/lib/mirrors/set_field_with_final_inheritance_test.dart
 | 
| +++ b/tests/lib/mirrors/set_field_with_final_inheritance_test.dart
 | 
| @@ -71,7 +71,6 @@ main() {
 | 
|    Expect.equals(21, c.mutableWithInheritedSetter);
 | 
|    Expect.equals(0, c.sideEffect);
 | 
|  
 | 
| -
 | 
|    c = new C();
 | 
|    im = reflect(c);
 | 
|    Expect.equals(22, im.setField(#finalWithInheritedMutable, 22).reflectee);
 | 
| @@ -82,7 +81,7 @@ main() {
 | 
|    c = new C();
 | 
|    im = reflect(c);
 | 
|    Expect.throws(() => im.setField(#finalWithInheritedFinal, 23),
 | 
| -                (e) => e is NoSuchMethodError);
 | 
| +      (e) => e is NoSuchMethodError);
 | 
|    Expect.equals(14, c.finalWithInheritedFinal);
 | 
|    Expect.equals(5, c.superFinalWithInheritedFinal);
 | 
|    Expect.equals(0, c.sideEffect);
 | 
| @@ -93,7 +92,6 @@ main() {
 | 
|    Expect.equals(15, c.finalWithInheritedSetter);
 | 
|    Expect.equals(6, c.sideEffect);
 | 
|  
 | 
| -
 | 
|    c = new C();
 | 
|    im = reflect(c);
 | 
|    Expect.equals(25, im.setField(#setterWithInheritedMutable, 25).reflectee);
 | 
| 
 |