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

Unified Diff: tests/corelib/map_remove_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/map_remove_test.dart
diff --git a/tests/corelib/map_remove_test.dart b/tests/corelib/map_remove_test.dart
index eecebf732ea024ee77f8bdba3e0984bc5e36ea85..cb252348affe87d560db5044264672dc08632639 100644
--- a/tests/corelib/map_remove_test.dart
+++ b/tests/corelib/map_remove_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()];
var maps = [map1, map2];
for (var map in maps) {

Powered by Google App Engine
This is Rietveld 408576698