| 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) {
|
|
|