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

Unified Diff: tests/corelib_strong/iterable_return_type_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_strong/integer_to_string_test.dart ('k') | tests/corelib_strong/list_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib_strong/iterable_return_type_test.dart
diff --git a/tests/corelib_strong/iterable_return_type_test.dart b/tests/corelib_strong/iterable_return_type_test.dart
index 941da36d98c6abc5c11073ef90e90588e263911c..b492478fc2156fcf1f0f59fb3b7f769af6c136cd 100644
--- a/tests/corelib_strong/iterable_return_type_test.dart
+++ b/tests/corelib_strong/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));
« no previous file with comments | « tests/corelib_strong/integer_to_string_test.dart ('k') | tests/corelib_strong/list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698