Unverified Commit 2b819dd2 authored by David Shuckerow's avatar David Shuckerow Committed by GitHub

Use stderr instead of stdout to contain errors in flutter attach test (#25305)

parent 01694ab6
...@@ -47,7 +47,7 @@ Future<void> testReload(Process process, { Future<void> Function() onListening } ...@@ -47,7 +47,7 @@ Future<void> testReload(Process process, { Future<void> Function() onListening }
.transform<String>(const LineSplitter()) .transform<String>(const LineSplitter())
.listen((String line) { .listen((String line) {
print('run:stderr: $line'); print('run:stderr: $line');
stdout.add(line); stderr.add(line);
}); });
process.exitCode.then<void>((int processExitCode) { exitCode = processExitCode; }); process.exitCode.then<void>((int processExitCode) { exitCode = processExitCode; });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment