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

Unified Diff: tests/standalone/io/named_pipe_script_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/named_pipe_script_test.dart
diff --git a/tests/standalone/io/named_pipe_script_test.dart b/tests/standalone/io/named_pipe_script_test.dart
index 9a9b562bf2e6f91b386de4d8249418c2e8b8d581..6bf1d28447589d7c62433096f7c0255e35d1110d 100644
--- a/tests/standalone/io/named_pipe_script_test.dart
+++ b/tests/standalone/io/named_pipe_script_test.dart
@@ -30,8 +30,7 @@ main() async {
}
StringBuffer output = new StringBuffer();
- Process process =
- await Process.start(Platform.executable, [stdinPipePath]);
+ Process process = await Process.start(Platform.executable, [stdinPipePath]);
bool stdinWriteFailed = false;
process.stdout.transform(UTF8.decoder).listen(output.write);
process.stderr.transform(UTF8.decoder).listen((data) {

Powered by Google App Engine
This is Rietveld 408576698