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

Unified Diff: tests/corelib/iterable_to_list_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/corelib/iterable_return_type_test.dart ('k') | tests/corelib/list_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7379c1dca9114bdeba12e2269b8c00a202a39ec7..63ec15764fdcea8b51967c7bbc73cb2daec04d55 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]);
}
« no previous file with comments | « tests/corelib/iterable_return_type_test.dart ('k') | tests/corelib/list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698