Index: tests/corelib/iterable_to_list_test.dart |
diff --git a/tests/corelib/iterable_to_list_test.dart b/tests/corelib/iterable_to_list_test.dart |
index 2257d8fce3258a0d9b95610c9bf2da7e16b6bdcc..8bd2621f439df7327acadd5826c7c50aee1ed9d7 100644 |
--- a/tests/corelib/iterable_to_list_test.dart |
+++ b/tests/corelib/iterable_to_list_test.dart |
@@ -28,11 +28,11 @@ main() { |
testIterable(new Set<int>.from([1, 2, 3]), <int>[1, 2, 3]); |
testIterable(new Queue.from([1, 2, 3]), [1, 2, 3]); |
testIterable(new Queue<int>.from(<int>[1, 2, 3]), <int>[1, 2, 3]); |
- testIterable(new Uint8List.fromList(<int>[1, 2, 3]), /// 01: ok |
- <int>[1, 2, 3]); /// 01: continued |
+ testIterable(new Uint8List.fromList(<int>[1, 2, 3]), // /// 01: ok |
+ <int>[1, 2, 3]); // /// 01: continued |
testIterable(new Float32List.fromList([1.0, 2.0, 3.0]), /// 01: continued |
sra1
2017/03/21 01:43:47
//
Jacob
2017/03/21 02:25:34
Done.
|
- <double>[1.0, 2.0, 3.0]); /// 01: continued |
- testIterable("abc".codeUnits, <int>[97, 98, 99]); /// 01: continued |
+ <double>[1.0, 2.0, 3.0]); // /// 01: continued |
+ testIterable("abc".codeUnits, <int>[97, 98, 99]); // /// 01: continued |
testIterable("abc".runes, <int>[97, 98, 99]); |
} |