mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-23 08:55:40 +01:00
add explicit usize type annotation to range iterator in test
This commit is contained in:
@@ -2321,7 +2321,7 @@ mod tests {
|
||||
let mut small_vec = SmallVec::<i32, 4>::new();
|
||||
(0..8).for_each(|i| small_vec.push(i));
|
||||
|
||||
(0..8).for_each(|i| {
|
||||
(0..8usize).for_each(|i| {
|
||||
assert_eq!(small_vec.get(i), Some(i as i32));
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user