Skip to content

Commit

Permalink
fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenmiller committed Feb 23, 2025
1 parent 5b2c490 commit 29808bf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions e2e_tests/src/stress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,7 @@ pub struct StressTestConfig {
}

fn generate_string(size: usize) -> String {
thread_rng()
.sample_iter(&Alphanumeric)
.take(size)
.map(char::from)
.collect()
thread_rng().sample_iter(&Alphanumeric).take(size).collect()
}

#[derive(Copy, Clone, Debug, PartialEq)]
Expand Down

0 comments on commit 29808bf

Please sign in to comment.