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

Unified Diff: tests/language/call_non_method_field_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/language/call_non_method_field_test.dart
diff --git a/tests/language/call_non_method_field_test.dart b/tests/language/call_non_method_field_test.dart
index fdc1fe3da9af6dcf5dae19134834bee0a6f604ab..a8b2e8e505860cc475ef0f30db56ba69a1c4aa26 100644
--- a/tests/language/call_non_method_field_test.dart
+++ b/tests/language/call_non_method_field_test.dart
@@ -14,10 +14,10 @@ class Hest extends Fisk {
main() {
Fisk x1 = new Fisk();
if (false) {
- x1.i(); // /// 01: static type warning
+ x1.i(); // //# 01: static type warning
}
Hest x2 = new Hest();
if (false) {
- x2.i(); // /// 02: static type warning
+ x2.i(); // //# 02: static type warning
}
}
« no previous file with comments | « tests/language/call_constructor_on_unresolvable_class_test.dart ('k') | tests/language/call_nonexistent_constructor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698