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

Unified Diff: tests/corelib_strong/map_keys_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_keys_test.dart
diff --git a/tests/corelib_strong/map_keys_test.dart b/tests/corelib_strong/map_keys_test.dart
index 5e0233613dba13645a00583a774d9ba690472f89..d3eaeda66eb6bf06e6cfa4fe47aa40b7435750b9 100644
--- a/tests/corelib_strong/map_keys_test.dart
+++ b/tests/corelib_strong/map_keys_test.dart
@@ -5,9 +5,9 @@
import "package:expect/expect.dart";
main() {
- var map1 = { "foo": 42, "bar": 499 };
+ var map1 = {"foo": 42, "bar": 499};
var map2 = {};
- var map3 = const { "foo": 42, "bar": 499 };
+ var map3 = const {"foo": 42, "bar": 499};
var map4 = const {};
var map5 = new Map<String, int>();
map5["foo"] = 43;

Powered by Google App Engine
This is Rietveld 408576698