Skip to content

Commit 82210d7

Browse files
committed
one more
1 parent cea9596 commit 82210d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ fn test_negative_stride_arcarray() {
579579
let seq = [
580580
7f32, 6., 5., 4., 3., 2., 1., 0., 15., 14., 13., 12., 11., 10., 9., 8.,
581581
];
582-
for (a, b) in vi.clone().iter().zip(seq.iter()) {
582+
for (a, b) in vi.iter().zip(seq.iter()) {
583583
assert_eq!(*a, *b);
584584
}
585585
}

0 commit comments

Comments
 (0)