| Index: tests/corelib/maps_test.dart
|
| diff --git a/tests/corelib/maps_test.dart b/tests/corelib/maps_test.dart
|
| index dd521e6b86f178aae8c025b96afce94c6622c0df..6d5193987b9d4919302e2b37e2a456b13c16cda1 100644
|
| --- a/tests/corelib/maps_test.dart
|
| +++ b/tests/corelib/maps_test.dart
|
| @@ -110,7 +110,7 @@ main() {
|
| void testForEachCollection(value) {
|
| other_map[value] = value;
|
| }
|
| - Collection values = Maps.getValues(map);
|
| + Iterable values = Maps.getValues(map);
|
| other_map = new Map();
|
| values.forEach(testForEachCollection);
|
| Expect.equals(true, !other_map.containsKey(key1));
|
|
|