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

Unified Diff: tests/isolate/scenarios/automatic_resolution_spec/package_resolve_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/scenarios/automatic_resolution_spec/package_resolve_test.dart
diff --git a/tests/isolate/scenarios/automatic_resolution_spec/package_resolve_test.dart b/tests/isolate/scenarios/automatic_resolution_spec/package_resolve_test.dart
index 67b4d1e3f000ac1029029a446a437f9a5b553dad..dee6d102c392c9767f51ed56d0dc04f07bebfa9a 100644
--- a/tests/isolate/scenarios/automatic_resolution_spec/package_resolve_test.dart
+++ b/tests/isolate/scenarios/automatic_resolution_spec/package_resolve_test.dart
@@ -14,10 +14,8 @@ main([args, port]) async {
return;
}
var p = new RawReceivePort();
- Isolate.spawnUri(Platform.script,
- [],
- p.sendPort,
- automaticPackageResolution: true);
+ Isolate.spawnUri(Platform.script, [], p.sendPort,
+ automaticPackageResolution: true);
p.handler = (msg) {
p.close();
if (msg is! List) {
@@ -27,7 +25,7 @@ main([args, port]) async {
var child_pkg_config = Platform.script.resolve(".packages");
if (msg[0] != child_pkg_config.toString()) {
throw "Bad package config in child isolate: ${msg[0]}\n"
- "Expected: $child_pkg_config";
+ "Expected: $child_pkg_config";
}
if (msg[1] != PACKAGE_PATH) {
throw "Package path not matching: ${msg[1]}";

Powered by Google App Engine
This is Rietveld 408576698