File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ where
153153///
154154/// See [`.kmerge_by()`](crate::Itertools::kmerge_by) for more
155155/// information.
156- #[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
156+ #[ must_use = "this iterator adaptor is not lazy but does nearly nothing unless consumed" ]
157157pub struct KMergeBy < I , F >
158158where
159159 I : Iterator ,
Original file line number Diff line number Diff line change @@ -143,11 +143,11 @@ must_use_tests! {
143143 let _ = Panicking . merge_join_by( Panicking , |_, _| true ) ;
144144 let _ = Panicking . merge_join_by( Panicking , Ord :: cmp) ;
145145 }
146- #[ ignore ]
146+ #[ should_panic ]
147147 kmerge {
148148 let _ = Panicking . map( |_| Panicking ) . kmerge( ) ;
149149 }
150- #[ ignore ]
150+ #[ should_panic ]
151151 kmerge_by {
152152 let _ = Panicking . map( |_| Panicking ) . kmerge_by( |_, _| true ) ;
153153 }
You can’t perform that action at this time.
0 commit comments