Skip to content

Commit 91394f8

Browse files
committed
Fix clippy lint
1 parent 99e64fb commit 91394f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/std/src/storage_keys/range.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ mod tests {
117117
fn assert_range<'a>(
118118
storage: &MockStorage,
119119
range: impl RangeBounds<&'a [u8]>,
120-
expected_values: impl Iterator<Item = u8> + DoubleEndedIterator + Clone,
120+
expected_values: impl DoubleEndedIterator<Item = u8> + Clone,
121121
) {
122122
let (s, e) = range_to_bounds(&range);
123123
// ascending

0 commit comments

Comments
 (0)