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

Unified Diff: tests/language/wrong_number_type_arguments_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/vm/debug_break_vm_test.dart ('k') | tests/language_strong/abstract_exact_selector_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/wrong_number_type_arguments_test.dart
diff --git a/tests/language/wrong_number_type_arguments_test.dart b/tests/language/wrong_number_type_arguments_test.dart
index 4cfa40bf5b909182e5562162ada7d1e988de1fe1..bc1da3297235525dab9fe5558aa314bac2f5af6a 100644
--- a/tests/language/wrong_number_type_arguments_test.dart
+++ b/tests/language/wrong_number_type_arguments_test.dart
@@ -6,16 +6,16 @@ import "package:expect/expect.dart";
// Map takes 2 type arguments.
Map
-<String> /// 00: static type warning
+<String> //# 00: static type warning
foo;
Map
-<String> /// 02: static type warning
+<String> //# 02: static type warning
baz;
main() {
foo = null;
var bar = new Map
- <String> /// 01: static type warning
+ <String> //# 01: static type warning
();
- baz = new Map(); /// 02: continued
+ baz = new Map(); //# 02: continued
}
« no previous file with comments | « tests/language/vm/debug_break_vm_test.dart ('k') | tests/language_strong/abstract_exact_selector_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698