Skip to content

Commit f783c16

Browse files
remove redundant mut
1 parent 698075e commit f783c16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/impl_methods.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3519,7 +3519,7 @@ mod tests
35193519
assert_eq!(result_mixed.shape(), &[0, 5]);
35203520

35213521
// Test empty array with negative strides
3522-
let mut arr = Array2::<i32>::zeros((3, 3));
3522+
let arr = Array2::<i32>::zeros((3, 3));
35233523
let empty_slice = arr.slice(s![0..0, ..]);
35243524
let result_slice = empty_slice.partition(0, Axis(0));
35253525
assert_eq!(result_slice.shape(), &[0, 3]);

0 commit comments

Comments
 (0)