mirror of
https://github.com/uutils/coreutils
synced 2025-01-19 00:24:13 +00:00
sort: fix test clippy long literal lacking separators
This commit is contained in:
parent
60bf8e1f88
commit
6de67cfc36
1 changed files with 1 additions and 1 deletions
|
@ -1133,7 +1133,7 @@ fn test_tmp_files_deleted_on_sigint() {
|
|||
for _ in 0..40 {
|
||||
let lines = rand_pcg::Pcg32::seed_from_u64(123)
|
||||
.sample_iter(rand::distributions::uniform::Uniform::new(0, 10000))
|
||||
.take(100000)
|
||||
.take(100_000)
|
||||
.map(|x| x.to_string() + "\n")
|
||||
.collect::<String>();
|
||||
file.write_all(lines.as_bytes()).unwrap();
|
||||
|
|
Loading…
Reference in a new issue