File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ impl<'a> Renderer<'a> {
245
245
name : outcome. name . clone ( ) ,
246
246
exec_time : None ,
247
247
stdout : None ,
248
- reason : None ,
248
+ message : None ,
249
249
} ;
250
250
self . render_test_outcome ( Outcome :: BenchOk , & fake_test_outcome) ;
251
251
self . benches . push ( outcome) ;
@@ -255,7 +255,7 @@ impl<'a> Renderer<'a> {
255
255
}
256
256
Message :: Test ( TestMessage :: Ignored ( outcome) ) => {
257
257
self . render_test_outcome (
258
- Outcome :: Ignored { reason : outcome. reason . as_deref ( ) } ,
258
+ Outcome :: Ignored { reason : outcome. message . as_deref ( ) } ,
259
259
& outcome,
260
260
) ;
261
261
}
@@ -345,5 +345,5 @@ struct TestOutcome {
345
345
name : String ,
346
346
exec_time : Option < f64 > ,
347
347
stdout : Option < String > ,
348
- reason : Option < String > ,
348
+ message : Option < String > ,
349
349
}
You can’t perform that action at this time.
0 commit comments