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(); |
+ }); |
+ }); |
} |
- |