Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
gostkin committed Mar 21, 2023
1 parent ea30d5c commit 24c2640
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions indexed-log-map/src/storage.rs
Expand Up @@ -314,17 +314,11 @@ mod tests {
for iteration in 0..iterations {
appending_threads.extend(
(threads_count * iteration..threads_count * (iteration + 1))
.into_iter()
.map(appending_fn)
.collect::<Vec<_>>(),
);
thread::sleep(Duration::new(1, 0));
reading_threads.extend(
(0..2 * threads_count)
.into_iter()
.map(reading_fn)
.collect::<Vec<_>>(),
);
reading_threads.extend((0..2 * threads_count).map(reading_fn).collect::<Vec<_>>());
}

for thread in appending_threads {
Expand Down

0 comments on commit 24c2640

Please sign in to comment.