Skip to content

Commit c9fe734

Browse files
committed
style: Fix clippy
1 parent 3f7614a commit c9fe734

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

activity/db/turso/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ mod tests {
707707
use rand::SeedableRng;
708708
let mut rng = rand::rngs::SmallRng::from_os_rng();
709709
(0..10)
710-
.map(|_| (rand::Rng::random_range(&mut rng, b'a'..=b'z') as char))
710+
.map(|_| rand::Rng::random_range(&mut rng, b'a'..=b'z') as char)
711711
.collect()
712712
}
713713

0 commit comments

Comments
 (0)