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

Unified Diff: tests/corelib_strong/map_values3_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_values3_test.dart
diff --git a/tests/corelib_strong/map_values3_test.dart b/tests/corelib_strong/map_values3_test.dart
index 617f1fce6e0dfed6ee2671f203c70f01e5095e31..44c356ce67ea6e10d513e00ecf14606d7e9cae14 100644
--- a/tests/corelib_strong/map_values3_test.dart
+++ b/tests/corelib_strong/map_values3_test.dart
@@ -5,9 +5,9 @@
import "package:expect/expect.dart";
main() {
- var map1 = <int, String>{ 1: "42", 2: "499" };
+ var map1 = <int, String>{1: "42", 2: "499"};
var map2 = <int, String>{};
- var map3 = const <int, String>{ 3: "42", 4: "499" };
+ var map3 = const <int, String>{3: "42", 4: "499"};
var map4 = const <int, String>{};
var map5 = new Map<int, String>();
map5[5] = "43";

Powered by Google App Engine
This is Rietveld 408576698