fix clippy warnings in tests

This commit is contained in:
Dmitry Belyaev 2023-08-13 12:33:19 +03:00
parent e0326e3b0a
commit ed37fee697
2 changed files with 3 additions and 3 deletions

View File

@ -295,11 +295,11 @@ mod test {
}
fn gen_data(count: usize) -> impl Iterator<Item = TestData> {
(0..count).into_iter().map(|i| TestData {
(0..count).map(|i| TestData {
num: i as u64,
test: "test".repeat(i),
vnum: (0..i * 120).map(|x| (x ^ 0x345FE34) as u64).collect(),
vstr: (0..i * 111).map(|x| "test".repeat(x).to_string()).collect(),
vstr: (0..i * 111).map(|x| "test".repeat(x)).collect(),
})
}

View File

@ -403,7 +403,7 @@ mod test {
}
fn gen_data(count: usize) -> impl Iterator<Item = TestData> {
(0..count).into_iter().map(|i| TestData {
(0..count).map(|i| TestData {
num: i as u64,
test: "test".repeat(i),
})