mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +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 {
|
for _ in 0..40 {
|
||||||
let lines = rand_pcg::Pcg32::seed_from_u64(123)
|
let lines = rand_pcg::Pcg32::seed_from_u64(123)
|
||||||
.sample_iter(rand::distributions::uniform::Uniform::new(0, 10000))
|
.sample_iter(rand::distributions::uniform::Uniform::new(0, 10000))
|
||||||
.take(100000)
|
.take(100_000)
|
||||||
.map(|x| x.to_string() + "\n")
|
.map(|x| x.to_string() + "\n")
|
||||||
.collect::<String>();
|
.collect::<String>();
|
||||||
file.write_all(lines.as_bytes()).unwrap();
|
file.write_all(lines.as_bytes()).unwrap();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue