| Index: tests/corelib/list_test.dart
|
| diff --git a/tests/corelib/list_test.dart b/tests/corelib/list_test.dart
|
| index 55239c8660187378a25f8a223f1472ef560eabe7..c7ef90297a4111ce294bf1c4febb4520bf402e6c 100644
|
| --- a/tests/corelib/list_test.dart
|
| +++ b/tests/corelib/list_test.dart
|
| @@ -21,7 +21,7 @@ class ListTest {
|
|
|
| static void testClosures(List list) {
|
| testMap(val) {return val * 2 + 10; }
|
| - Collection mapped = list.mappedBy(testMap);
|
| + List mapped = list.mappedBy(testMap).toList();
|
| Expect.equals(mapped.length, list.length);
|
| for (var i = 0; i < list.length; i++) {
|
| Expect.equals(mapped[i], list[i]*2 + 10);
|
|
|