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

Unified Diff: tests/isolate/spawn_uri_vm_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/spawn_uri_vm_test.dart
diff --git a/tests/isolate/spawn_uri_vm_test.dart b/tests/isolate/spawn_uri_vm_test.dart
index e5510a5a1180a9848d9ba35b3e5b1993e60cb8da..094f3253a0445ecc1eeaf8450e95c19fc768c6d1 100644
--- a/tests/isolate/spawn_uri_vm_test.dart
+++ b/tests/isolate/spawn_uri_vm_test.dart
@@ -7,6 +7,7 @@
// other isolate's code.
// OtherScripts=spawn_uri_child_isolate.dart
library spawn_tests;
+
import 'dart:isolate';
import 'package:unittest/unittest.dart';
@@ -17,7 +18,7 @@ main() {
expect(msg, equals('re: hi'));
}));
- Isolate.spawnUri(Uri.parse('spawn_uri_child_isolate.dart'),
- ['hi'], port.sendPort);
+ Isolate.spawnUri(
+ Uri.parse('spawn_uri_child_isolate.dart'), ['hi'], port.sendPort);
});
}

Powered by Google App Engine
This is Rietveld 408576698