File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ where
153
153
///
154
154
/// See [`.kmerge_by()`](crate::Itertools::kmerge_by) for more
155
155
/// 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" ]
157
157
pub struct KMergeBy < I , F >
158
158
where
159
159
I : Iterator ,
Original file line number Diff line number Diff line change @@ -143,11 +143,11 @@ must_use_tests! {
143
143
let _ = Panicking . merge_join_by( Panicking , |_, _| true ) ;
144
144
let _ = Panicking . merge_join_by( Panicking , Ord :: cmp) ;
145
145
}
146
- #[ ignore ]
146
+ #[ should_panic ]
147
147
kmerge {
148
148
let _ = Panicking . map( |_| Panicking ) . kmerge( ) ;
149
149
}
150
- #[ ignore ]
150
+ #[ should_panic ]
151
151
kmerge_by {
152
152
let _ = Panicking . map( |_| Panicking ) . kmerge_by( |_, _| true ) ;
153
153
}
You can’t perform that action at this time.
0 commit comments