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

Unified Diff: tests/lib/mirrors/generic_superclass_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
Index: tests/lib/mirrors/generic_superclass_test.dart
diff --git a/tests/lib/mirrors/generic_superclass_test.dart b/tests/lib/mirrors/generic_superclass_test.dart
index ebf4c8cf96b22f8f52474a23933b036a47aec6a7..a0a7e03ba5f2d2376cbbada8242a2168fb6a7533 100644
--- a/tests/lib/mirrors/generic_superclass_test.dart
+++ b/tests/lib/mirrors/generic_superclass_test.dart
@@ -52,9 +52,9 @@ void testOriginals() {
Expect.equals(reflectClass(Object), superA);
Expect.equals(reflect(new A<U>()).type, superB);
- Expect.equals(reflect(new A<C>()).type, superC); /// 01: ok
+ Expect.equals(reflect(new A<C>()).type, superC); //# 01: ok
Expect.equals(reflect(new U()).type, superB.typeArguments[0]);
- Expect.equals(reflect(new C()).type, superC.typeArguments[0]); /// 01: ok
+ Expect.equals(reflect(new C()).type, superC.typeArguments[0]); //# 01: ok
Expect.equals(dT, superD.typeArguments[0]);
Expect.equals(eY, superE.typeArguments[0].typeArguments[0]);
Expect.equals(feY, superInterfaceFF.typeArguments[0].typeArguments[0]);
@@ -94,13 +94,13 @@ void testInstances() {
Expect.equals(reflectClass(Object), superA);
Expect.equals(reflect(new A<U>()).type, superB);
- Expect.equals(reflect(new A<C>()).type, superC); /// 01: ok
+ Expect.equals(reflect(new A<C>()).type, superC); //# 01: ok
Expect.equals(reflect(new A<U>()).type, superD);
Expect.equals(reflect(new G<H<R>>()).type, superE);
Expect.equals(reflect(new G<H<H<R>>>()).type, superE0);
Expect.equals(reflect(new G<H<R>>()).type, superInterfaceFF);
Expect.equals(u, superB.typeArguments[0]);
- Expect.equals(reflect(new C()).type, superC.typeArguments[0]); /// 01: ok
+ Expect.equals(reflect(new C()).type, superC.typeArguments[0]); //# 01: ok
Expect.equals(u, superD.typeArguments[0]);
Expect.equals(r, superE.typeArguments[0].typeArguments[0]);
Expect.equals(hr, superE0.typeArguments[0].typeArguments[0]);
« no previous file with comments | « tests/lib/mirrors/generic_interface_test.dart ('k') | tests/lib/mirrors/generics_double_substitution_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698