Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Unified Diff: tests/corelib/iterable_to_list_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..8fef015a8a10df47a6a4fb6b4ada607c05d6ef07 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 Float32List.fromList([1.0, 2.0, 3.0]), /// 01: continued
- <double>[1.0, 2.0, 3.0]); /// 01: continued
- testIterable("abc".codeUnits, <int>[97, 98, 99]); /// 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
+ <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]);
}

Powered by Google App Engine
This is Rietveld 408576698