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

Unified Diff: tests/language/map_literal2_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_test.dart
diff --git a/tests/language/map_literal2_test.dart b/tests/language/map_literal2_test.dart
index c510f3539af9fb88b4a277a7da9d519bb16c9c1a..d170b58a3e326f8279fa50bbd24e06ca6eb03bb1 100644
--- a/tests/language/map_literal2_test.dart
+++ b/tests/language/map_literal2_test.dart
@@ -14,7 +14,7 @@ get nextVal {
main() {
// Map literals with string interpolation in keys.
nextValCtr = 0;
- var map = {"a$nextVal": "Grey", "a$nextVal": "Poupon" };
+ var map = {"a$nextVal": "Grey", "a$nextVal": "Poupon"};
Expect.equals(true, map.containsKey("a0"));
Expect.equals(true, map.containsKey("a1"));
Expect.equals("Grey", map["a0"]);

Powered by Google App Engine
This is Rietveld 408576698