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

Unified Diff: tests/isolate/issue_24243_child2_isolate.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/isolate/issue_24243_child2_isolate.dart
diff --git a/tests/isolate/issue_24243_child2_isolate.dart b/tests/isolate/issue_24243_child2_isolate.dart
index 019665377073f1c49c0f45568fd92f0f7627244b..a60330943c714786ce4be1062098a969d7514cda 100644
--- a/tests/isolate/issue_24243_child2_isolate.dart
+++ b/tests/isolate/issue_24243_child2_isolate.dart
@@ -7,12 +7,12 @@ import 'dart:isolate';
main(List<String> args, message) {
var sendPort = message;
try {
- var map0 = <int, String>{1:'one', 2:'two', 3:'three'};
- var map1 = <int, String>{4:'four', 5:'five', 6:'six'};
- var map2 = <int, String>{7:'seven', 8:'eight', 9:'nine'};
- var map = new Map<int, Map<int, String>>.from({0:map0, 1:map1, 2:map2});
+ var map0 = <int, String>{1: 'one', 2: 'two', 3: 'three'};
+ var map1 = <int, String>{4: 'four', 5: 'five', 6: 'six'};
+ var map2 = <int, String>{7: 'seven', 8: 'eight', 9: 'nine'};
+ var map = new Map<int, Map<int, String>>.from({0: map0, 1: map1, 2: map2});
sendPort.send(map);
- } catch(error) {
+ } catch (error) {
sendPort.send("Invalid Argument(s).");
}
}

Powered by Google App Engine
This is Rietveld 408576698