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

Unified Diff: tests/language/abstract_factory_constructor_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/language/abstract_exact_selector_test.dart ('k') | tests/language/abstract_getter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/abstract_factory_constructor_test.dart
diff --git a/tests/language/abstract_factory_constructor_test.dart b/tests/language/abstract_factory_constructor_test.dart
index 50e7965c2b251f30b708def5a169598389b48f53..aacfee0079e80c38b23bad13d9226819d190720c 100644
--- a/tests/language/abstract_factory_constructor_test.dart
+++ b/tests/language/abstract_factory_constructor_test.dart
@@ -19,11 +19,11 @@ abstract class A1 {
class A2 {
// Intentionally abstract method.
- method(); // /// 00: static type warning
+ method(); // //# 00: static type warning
A2.make() {}
}
main() {
new A1.make();
- new A2.make(); /// 00: continued
+ new A2.make(); //# 00: continued
}
« no previous file with comments | « tests/language/abstract_exact_selector_test.dart ('k') | tests/language/abstract_getter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698