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

Unified Diff: tests/corelib_strong/map_values4_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_values4_test.dart
diff --git a/tests/corelib_strong/map_values4_test.dart b/tests/corelib_strong/map_values4_test.dart
index 7e8b7fd2ea251ca6e6ac9d7b951610ebf6afd228..4f99056128d5b3227889a5f00decf10dd50dfe60 100644
--- a/tests/corelib_strong/map_values4_test.dart
+++ b/tests/corelib_strong/map_values4_test.dart
@@ -9,7 +9,7 @@ import "package:expect/expect.dart";
// map.values).
main() {
- var map1 = <int, String>{ 1: "42", 2: "499" };
+ var map1 = <int, String>{1: "42", 2: "499"};
Expect.isTrue(map1.values is Iterable<String>);
Expect.isFalse(map1.values is Iterable<bool>);
}

Powered by Google App Engine
This is Rietveld 408576698