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

Unified Diff: tests/standalone/io/regress_7191_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/standalone/io/regress_7191_test.dart
diff --git a/tests/standalone/io/regress_7191_test.dart b/tests/standalone/io/regress_7191_test.dart
index be15856e755ecf50f2f471e298f0e6216f4b5691..a68a800b2afbd1e8d78498c27766998d6d937c78 100644
--- a/tests/standalone/io/regress_7191_test.dart
+++ b/tests/standalone/io/regress_7191_test.dart
@@ -23,9 +23,10 @@ main() {
var script = Platform.script.resolve('regress_7191_script.dart').toFilePath();
Process.start(executable, [script]).then((process) {
process.stdin.add([0]);
- process.stdout.listen((_) { },
- onDone: () { process.stdin.add([0]); });
- process.stderr.listen((_) { });
+ process.stdout.listen((_) {}, onDone: () {
+ process.stdin.add([0]);
+ });
+ process.stderr.listen((_) {});
process.exitCode.then((exitCode) {
asyncEnd();
if (exitCode != 0) throw "Bad exit code";

Powered by Google App Engine
This is Rietveld 408576698