fix clippy warnings in tests
This commit is contained in:
parent
e0326e3b0a
commit
ed37fee697
@ -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(),
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -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),
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user