Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading