File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-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,20 @@ impl ComparisonSummary {
407
393
write ! ( result, "- " ) . unwrap ( ) ;
408
394
change. summary_line ( result, link)
409
395
}
396
+
397
+ if !comparison. new_errors . is_empty ( ) {
398
+ write ! (
399
+ result,
400
+ "- Benchmarks {} started failing to build" ,
401
+ comparison
402
+ . new_errors
403
+ . keys( )
404
+ . map( |k| k. as_str( ) )
405
+ . collect:: <Vec <_>>( )
406
+ . join( ", " )
407
+ )
408
+ . unwrap ( ) ;
409
+ }
410
410
}
411
411
}
412
412
You can’t perform that action at this time.
0 commit comments