@@ -519,12 +519,12 @@ mod tests {
519519 let is_sorted = arr
520520 . statistics ( )
521521 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsSorted ) ) ;
522- assert_eq ! ( is_sorted, Some ( StatPrecision :: Exact ( true ) ) ) ;
522+ assert_eq ! ( is_sorted, StatPrecision :: Exact ( true ) ) ;
523523
524524 let is_strict_sorted = arr
525525 . statistics ( )
526526 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsStrictSorted ) ) ;
527- assert_eq ! ( is_strict_sorted, Some ( StatPrecision :: Exact ( true ) ) ) ;
527+ assert_eq ! ( is_strict_sorted, StatPrecision :: Exact ( true ) ) ;
528528 Ok ( ( ) )
529529 }
530530
@@ -535,12 +535,12 @@ mod tests {
535535 let is_sorted = arr
536536 . statistics ( )
537537 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsSorted ) ) ;
538- assert_eq ! ( is_sorted, Some ( StatPrecision :: Exact ( true ) ) ) ;
538+ assert_eq ! ( is_sorted, StatPrecision :: Exact ( true ) ) ;
539539
540540 let is_strict_sorted = arr
541541 . statistics ( )
542542 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsStrictSorted ) ) ;
543- assert_eq ! ( is_strict_sorted, Some ( StatPrecision :: Exact ( false ) ) ) ;
543+ assert_eq ! ( is_strict_sorted, StatPrecision :: Exact ( false ) ) ;
544544 Ok ( ( ) )
545545 }
546546
@@ -551,12 +551,12 @@ mod tests {
551551 let is_sorted = arr
552552 . statistics ( )
553553 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsSorted ) ) ;
554- assert_eq ! ( is_sorted, Some ( StatPrecision :: Exact ( false ) ) ) ;
554+ assert_eq ! ( is_sorted, StatPrecision :: Exact ( false ) ) ;
555555
556556 let is_strict_sorted = arr
557557 . statistics ( )
558558 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsStrictSorted ) ) ;
559- assert_eq ! ( is_strict_sorted, Some ( StatPrecision :: Exact ( false ) ) ) ;
559+ assert_eq ! ( is_strict_sorted, StatPrecision :: Exact ( false ) ) ;
560560 Ok ( ( ) )
561561 }
562562
@@ -575,8 +575,8 @@ mod tests {
575575 . statistics ( )
576576 . with_typed_stats_set ( |s| s. get_as :: < bool > ( Stat :: IsStrictSorted ) ) ;
577577
578- assert_eq ! ( is_sorted, Some ( StatPrecision :: Exact ( true ) ) ) ;
579- assert_eq ! ( is_strict_sorted, Some ( StatPrecision :: Exact ( true ) ) ) ;
578+ assert_eq ! ( is_sorted, StatPrecision :: Exact ( true ) ) ;
579+ assert_eq ! ( is_strict_sorted, StatPrecision :: Exact ( true ) ) ;
580580
581581 Ok ( ( ) )
582582 }
0 commit comments