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

Unified Diff: tests/isolate/exit_at_spawnuri_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/isolate/exit_at_spawnuri_test.dart
diff --git a/tests/isolate/exit_at_spawnuri_test.dart b/tests/isolate/exit_at_spawnuri_test.dart
index a3c08cce4cdb1909ea2d5ab6c8e12ee5100169f2..68b39238e142939c05367eda5d8966fb4cd3423d 100644
--- a/tests/isolate/exit_at_spawnuri_test.dart
+++ b/tests/isolate/exit_at_spawnuri_test.dart
@@ -11,7 +11,7 @@ import "dart:async";
import "package:async_helper/async_helper.dart";
import "package:expect/expect.dart";
-main(){
+main() {
asyncStart();
RawReceivePort exitPort = new RawReceivePort();
@@ -20,10 +20,9 @@ main(){
exitPort.close();
asyncEnd();
};
-
- Isolate.spawnUri(Uri.parse("exit_at_spawnuri_iso.dart"), [],
- null,
- // Setup handler as part of spawn.
- errorsAreFatal: false,
- onExit: exitPort.sendPort);
+
+ Isolate.spawnUri(Uri.parse("exit_at_spawnuri_iso.dart"), [], null,
+ // Setup handler as part of spawn.
+ errorsAreFatal: false,
+ onExit: exitPort.sendPort);
}

Powered by Google App Engine
This is Rietveld 408576698