| Index: tests/corelib/iterable_return_type_test.dart
|
| diff --git a/tests/corelib/iterable_return_type_test.dart b/tests/corelib/iterable_return_type_test.dart
|
| index 023384ec54a7edd5c6f951347787b5fdf9f9aea5..4705be7f3cfb09c56af5dbf980d212fbe0408dd6 100644
|
| --- a/tests/corelib/iterable_return_type_test.dart
|
| +++ b/tests/corelib/iterable_return_type_test.dart
|
| @@ -63,14 +63,14 @@ main() {
|
| testList(new List<int>.generate(1, (x) => x + 1));
|
|
|
| // Typed lists.
|
| - testList(new Uint8List(1)..[0] = 1); /// 01: ok
|
| - testList(new Int8List(1)..[0] = 1); /// 01: continued
|
| - testList(new Uint16List(1)..[0] = 1); /// 01: continued
|
| - testList(new Int16List(1)..[0] = 1); /// 01: continued
|
| - testList(new Uint32List(1)..[0] = 1); /// 01: continued
|
| - testList(new Int32List(1)..[0] = 1); /// 01: continued
|
| - testList(new Uint64List(1)..[0] = 1); /// 02: ok
|
| - testList(new Int64List(1)..[0] = 1); /// 02: continued
|
| + testList(new Uint8List(1)..[0] = 1); //# 01: ok
|
| + testList(new Int8List(1)..[0] = 1); //# 01: continued
|
| + testList(new Uint16List(1)..[0] = 1); //# 01: continued
|
| + testList(new Int16List(1)..[0] = 1); //# 01: continued
|
| + testList(new Uint32List(1)..[0] = 1); //# 01: continued
|
| + testList(new Int32List(1)..[0] = 1); //# 01: continued
|
| + testList(new Uint64List(1)..[0] = 1); //# 02: ok
|
| + testList(new Int64List(1)..[0] = 1); //# 02: continued
|
|
|
| testIterable(new Set<int>()..add(1));
|
| testIterable(new HashSet<int>()..add(1));
|
|
|