@@ -433,7 +433,7 @@ mod tests {
433433 Some ( ignore_list) ,
434434 ) ;
435435 let span = MultiSpan :: from_span ( mk_sp ( BytePos ( 0 ) , BytePos ( 1 ) ) ) ;
436- let non_fatal_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning , Some ( span) ) ;
436+ let non_fatal_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning ( None ) , Some ( span) ) ;
437437 emitter. emit_diagnostic ( & non_fatal_diagnostic) ;
438438 assert_eq ! ( num_emitted_errors. load( Ordering :: Acquire ) , 0 ) ;
439439 assert_eq ! ( can_reset_errors. load( Ordering :: Acquire ) , true ) ;
@@ -457,7 +457,7 @@ mod tests {
457457 None ,
458458 ) ;
459459 let span = MultiSpan :: from_span ( mk_sp ( BytePos ( 0 ) , BytePos ( 1 ) ) ) ;
460- let non_fatal_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning , Some ( span) ) ;
460+ let non_fatal_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning ( None ) , Some ( span) ) ;
461461 emitter. emit_diagnostic ( & non_fatal_diagnostic) ;
462462 assert_eq ! ( num_emitted_errors. load( Ordering :: Acquire ) , 1 ) ;
463463 assert_eq ! ( can_reset_errors. load( Ordering :: Acquire ) , false ) ;
@@ -494,8 +494,8 @@ mod tests {
494494 ) ;
495495 let bar_span = MultiSpan :: from_span ( mk_sp ( BytePos ( 0 ) , BytePos ( 1 ) ) ) ;
496496 let foo_span = MultiSpan :: from_span ( mk_sp ( BytePos ( 21 ) , BytePos ( 22 ) ) ) ;
497- let bar_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning , Some ( bar_span) ) ;
498- let foo_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning , Some ( foo_span) ) ;
497+ let bar_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning ( None ) , Some ( bar_span) ) ;
498+ let foo_diagnostic = build_diagnostic ( DiagnosticLevel :: Warning ( None ) , Some ( foo_span) ) ;
499499 let fatal_diagnostic = build_diagnostic ( DiagnosticLevel :: Fatal , None ) ;
500500 emitter. emit_diagnostic ( & bar_diagnostic) ;
501501 emitter. emit_diagnostic ( & foo_diagnostic) ;
0 commit comments