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

Unified Diff: tests/language/abstract_factory_constructor_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/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 d20401ae8ac1bef847ad5d5bdc48a09bab41821c..ec56c6418680a19ed19d54bab0d2c30e8707cfb5 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
}

Powered by Google App Engine
This is Rietveld 408576698