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

Unified Diff: tests/standalone/typed_data_isolate_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/standalone/typed_data_isolate_test.dart
diff --git a/tests/standalone/typed_data_isolate_test.dart b/tests/standalone/typed_data_isolate_test.dart
index 35ed8a9c1da64c02ab25e569eb14fb1b451e073e..6af47737906684c518404c809c0cbcc657e8275f 100644
--- a/tests/standalone/typed_data_isolate_test.dart
+++ b/tests/standalone/typed_data_isolate_test.dart
@@ -21,14 +21,13 @@ second(message) {
}
main() {
- asyncStart();
- new File(Platform.script.toFilePath()).readAsBytes().then((List<int> data) {
- var response = new ReceivePort();
- var remote = Isolate.spawn(second, [data, response.sendPort]);
- response.first.then((reply) {
- print('got reply');
- asyncEnd();
- });
- });
+ asyncStart();
+ new File(Platform.script.toFilePath()).readAsBytes().then((List<int> data) {
+ var response = new ReceivePort();
+ var remote = Isolate.spawn(second, [data, response.sendPort]);
+ response.first.then((reply) {
+ print('got reply');
+ asyncEnd();
+ });
+ });
}
-

Powered by Google App Engine
This is Rietveld 408576698