Skip to content

Commit 2b819dd

Browse files
Use stderr instead of stdout to contain errors in flutter attach test (flutter#25305)
1 parent 01694ab commit 2b819dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/devicelab/bin/tasks/flutter_attach_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Future<void> testReload(Process process, { Future<void> Function() onListening }
4747
.transform<String>(const LineSplitter())
4848
.listen((String line) {
4949
print('run:stderr: $line');
50-
stdout.add(line);
50+
stderr.add(line);
5151
});
5252

5353
process.exitCode.then<void>((int processExitCode) { exitCode = processExitCode; });

0 commit comments

Comments
 (0)