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

Unified Diff: tests/language/parse_closures_in_initializers_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/parse_closures_in_initializers_test.dart
diff --git a/tests/language/parse_closures_in_initializers_test.dart b/tests/language/parse_closures_in_initializers_test.dart
index 4da7e98e5bda537862fd1071a3c77a063c1bacc4..9fc7eda4cbf250dc6856029953c106a927b96ed0 100644
--- a/tests/language/parse_closures_in_initializers_test.dart
+++ b/tests/language/parse_closures_in_initializers_test.dart
@@ -13,7 +13,7 @@ class A {
A.parenthesized(y) : x = (() => y);
A.stringLiteral(y) : x = "**${() => y}--";
A.listLiteral(y) : x = [() => y];
- A.mapLiteral(y) : x = { "fun": () => y };
+ A.mapLiteral(y) : x = {"fun": () => y};
A.arg(y) : x = foo(() => y);
}

Powered by Google App Engine
This is Rietveld 408576698