sort: fix test clippy long literal lacking separators

This commit is contained in:
leon3s 2023-03-18 22:30:48 +01:00
parent 60bf8e1f88
commit 6de67cfc36

View file

@ -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();