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

Unified Diff: tests/isolate/spawn_uri_missing_from_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/isolate/spawn_uri_missing_from_isolate_test.dart
diff --git a/tests/isolate/spawn_uri_missing_from_isolate_test.dart b/tests/isolate/spawn_uri_missing_from_isolate_test.dart
index c7551d2b08f55fdd60e84b3c5e08f396760daabd..445edc182005f393225ab0952e1049b699a2c4e6 100644
--- a/tests/isolate/spawn_uri_missing_from_isolate_test.dart
+++ b/tests/isolate/spawn_uri_missing_from_isolate_test.dart
@@ -21,8 +21,7 @@ import 'spawn_uri_missing_test.dart';
const String SUCCESS = 'Test worked.';
void isolate(SendPort port) {
- doTest().then(
- (_) => port.send(SUCCESS),
+ doTest().then((_) => port.send(SUCCESS),
onError: (error, stack) => port.send('Test failed: $error\n$stack'));
}

Powered by Google App Engine
This is Rietveld 408576698