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

Unified Diff: tests/corelib_strong/map_contains_value_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/corelib_strong/map_contains_value_test.dart
diff --git a/tests/corelib_strong/map_contains_value_test.dart b/tests/corelib_strong/map_contains_value_test.dart
index 84f02ae65106f2a143ee21f20e03f2f05f71116c..7837417e3fd6a62bf07690ddba84737213a57bac 100644
--- a/tests/corelib_strong/map_contains_value_test.dart
+++ b/tests/corelib_strong/map_contains_value_test.dart
@@ -4,14 +4,19 @@
import "package:expect/expect.dart";
-class A { const A(); }
-class B extends A { const B(); }
+class A {
+ const A();
+}
+
+class B extends A {
+ const B();
+}
main() {
var map1 = new Map<B, B>();
map1[const B()] = const B();
var map2 = new Map<B, B>();
- var list = <B>[ const B() ];
+ var list = <B>[const B()];
Map<int, B> map3 = list.asMap();
var maps = [map1, map2, map3];

Powered by Google App Engine
This is Rietveld 408576698