| Index: tests/corelib_strong/list_reversed_test.dart | 
| diff --git a/tests/corelib_strong/list_reversed_test.dart b/tests/corelib_strong/list_reversed_test.dart | 
| index 05dba7a474af5cd5f8a3440ed9a87df9d4a5682c..1be8d99d362a99537ee12a3fa5bc5d9977986f24 100644 | 
| --- a/tests/corelib_strong/list_reversed_test.dart | 
| +++ b/tests/corelib_strong/list_reversed_test.dart | 
| @@ -4,7 +4,6 @@ | 
|  | 
| import "package:expect/expect.dart"; | 
|  | 
| - | 
| main() { | 
| testOperations(); | 
| } | 
| @@ -48,7 +47,6 @@ void testOperations() { | 
| Expect.listEquals(subr, | 
| reversed.skip(2).toList().reversed.skip(2).toList().reversed.toList()); | 
|  | 
| - | 
| void testList(List<int> list) { | 
| var throws = const ThrowMarker(); | 
| void testEquals(v1, v2, path) { | 
| @@ -63,8 +61,8 @@ void testOperations() { | 
| index++; | 
| } | 
| if (i2.moveNext()) { | 
| -          Expect.fail( | 
| -              "Too many actual values. Actual[$index] == ${i2.current}"); | 
| +          Expect | 
| +              .fail("Too many actual values. Actual[$index] == ${i2.current}"); | 
| } | 
| } else { | 
| Expect.equals(v1, v2, path); | 
| @@ -91,6 +89,7 @@ void testOperations() { | 
| } | 
| testEquals(expect, actual, "$name: $list"); | 
| } | 
| + | 
| testOp((i) => i.first, "first"); | 
| testOp((i) => i.last, "last"); | 
| testOp((i) => i.single, "single"); | 
|  |