File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,9 @@ class CommandOutput extends UniqueObject {
108
108
109
109
/// Called when producing output for a test failure to describe this output.
110
110
void describe (Progress progress, OutputWriter output) {
111
+ output.subsection ("exit code" );
112
+ output.write (exitCode.toString ());
113
+
111
114
if (diagnostics.isNotEmpty) {
112
115
output.subsection ("diagnostics" );
113
116
output.writeAll (diagnostics);
@@ -512,7 +515,7 @@ class BrowserCommandOutput extends CommandOutput
512
515
513
516
if (_result.browserOutput.stderr.isNotEmpty) {
514
517
output.subsection ("Browser stderr" );
515
- output.write (_result.browserOutput.stdout .toString ());
518
+ output.write (_result.browserOutput.stderr .toString ());
516
519
}
517
520
}
518
521
You can’t perform that action at this time.
0 commit comments