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

Unified Diff: tests/language/wrong_number_type_arguments_test.dart

Issue 2774783002: Re-land "Format all 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/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 bc1da3297235525dab9fe5558aa314bac2f5af6a..acbf1c174074171f26660493e5cbc654128b56b0 100644
--- a/tests/language/wrong_number_type_arguments_test.dart
+++ b/tests/language/wrong_number_type_arguments_test.dart
@@ -7,15 +7,15 @@ import "package:expect/expect.dart";
// Map takes 2 type arguments.
Map
<String> //# 00: static type warning
-foo;
+ foo;
Map
<String> //# 02: static type warning
-baz;
+ baz;
main() {
foo = null;
var bar = new Map
<String> //# 01: static type warning
- ();
+ ();
baz = new Map(); //# 02: continued
}
« no previous file with comments | « tests/language/variable_declaration_metadata_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