File tree Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -368,20 +368,6 @@ impl ComparisonSummary {
368
368
369
369
self . write_summary_lines ( & mut result, Some ( link) ) ;
370
370
371
- if !comparison. new_errors . is_empty ( ) {
372
- write ! (
373
- result,
374
- "- New errors in {}" ,
375
- comparison
376
- . new_errors
377
- . keys( )
378
- . map( |k| k. as_str( ) )
379
- . collect:: <Vec <_>>( )
380
- . join( ", " )
381
- )
382
- . unwrap ( ) ;
383
- }
384
-
385
371
result
386
372
}
387
373
@@ -407,6 +393,19 @@ impl ComparisonSummary {
407
393
write ! ( result, "- " ) . unwrap ( ) ;
408
394
change. summary_line ( result, link)
409
395
}
396
+
397
+ if !self . new_errors . is_empty ( ) {
398
+ write ! (
399
+ result,
400
+ "- Benchmarks {} started failing to build" ,
401
+ self . new_errors
402
+ . keys( )
403
+ . map( |k| k. as_str( ) )
404
+ . collect:: <Vec <_>>( )
405
+ . join( ", " )
406
+ )
407
+ . unwrap ( ) ;
408
+ }
410
409
}
411
410
}
412
411
You can’t perform that action at this time.
0 commit comments