File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ impl<T: Write> PrettyFormatter<T> {
101
101
for & ( ref f, ref stdout) in & state. not_failures {
102
102
successes. push ( f. name . to_string ( ) ) ;
103
103
if !stdout. is_empty ( ) {
104
- stdouts. push_str ( & format ! ( "---- {} stdout ----\n \t " , f. name) ) ;
104
+ stdouts. push_str ( & format ! ( "---- {} stdout ----\n " , f. name) ) ;
105
105
let output = String :: from_utf8_lossy ( stdout) ;
106
106
stdouts. push_str ( & output) ;
107
107
stdouts. push_str ( "\n " ) ;
@@ -127,7 +127,7 @@ impl<T: Write> PrettyFormatter<T> {
127
127
for & ( ref f, ref stdout) in & state. failures {
128
128
failures. push ( f. name . to_string ( ) ) ;
129
129
if !stdout. is_empty ( ) {
130
- fail_out. push_str ( & format ! ( "---- {} stdout ----\n \t " , f. name) ) ;
130
+ fail_out. push_str ( & format ! ( "---- {} stdout ----\n " , f. name) ) ;
131
131
let output = String :: from_utf8_lossy ( stdout) ;
132
132
fail_out. push_str ( & output) ;
133
133
fail_out. push_str ( "\n " ) ;
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ impl<T: Write> TerseFormatter<T> {
105
105
for & ( ref f, ref stdout) in & state. not_failures {
106
106
successes. push ( f. name . to_string ( ) ) ;
107
107
if !stdout. is_empty ( ) {
108
- stdouts. push_str ( & format ! ( "---- {} stdout ----\n \t " , f. name) ) ;
108
+ stdouts. push_str ( & format ! ( "---- {} stdout ----\n " , f. name) ) ;
109
109
let output = String :: from_utf8_lossy ( stdout) ;
110
110
stdouts. push_str ( & output) ;
111
111
stdouts. push_str ( "\n " ) ;
@@ -131,7 +131,7 @@ impl<T: Write> TerseFormatter<T> {
131
131
for & ( ref f, ref stdout) in & state. failures {
132
132
failures. push ( f. name . to_string ( ) ) ;
133
133
if !stdout. is_empty ( ) {
134
- fail_out. push_str ( & format ! ( "---- {} stdout ----\n \t " , f. name) ) ;
134
+ fail_out. push_str ( & format ! ( "---- {} stdout ----\n " , f. name) ) ;
135
135
let output = String :: from_utf8_lossy ( stdout) ;
136
136
fail_out. push_str ( & output) ;
137
137
fail_out. push_str ( "\n " ) ;
You can’t perform that action at this time.
0 commit comments