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

Unified Diff: tests/language/map_literal2_negative_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/map_literal2_negative_test.dart
diff --git a/tests/language/map_literal2_negative_test.dart b/tests/language/map_literal2_negative_test.dart
index e02e5d0b5bedf3d798320abdbaf37c15e26af94c..b4ead5062d1dc60424d7560f3d32fcea49e99c48 100644
--- a/tests/language/map_literal2_negative_test.dart
+++ b/tests/language/map_literal2_negative_test.dart
@@ -8,10 +8,9 @@
class MapLiteral2NegativeTest<T> {
test() {
try {
- var m = const <String, T>{"a": 0}; // Type parameter is not allowed with
- // const.
- } on TypeError catch (error) {
- }
+ var m = const <String, T>{"a": 0}; // Type parameter is not allowed with
+ // const.
+ } on TypeError catch (error) {}
}
}
@@ -19,5 +18,3 @@ main() {
var t = new MapLiteral2NegativeTest<int>();
t.test();
}
-
-

Powered by Google App Engine
This is Rietveld 408576698