Skip to content

Commit 7b8c64e

Browse files
committed
MAINT: Fix warning in just added test
1 parent 24ea27c commit 7b8c64e

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
@@ -237,7 +237,7 @@ fn test_sub()
237237
#[test]
238238
fn test_sub_oob_1() {
239239
let mat = RcArray::linspace(0., 15., 16).reshape((2, 4, 2));
240-
let s1 = mat.subview(Axis(0), 2);
240+
mat.subview(Axis(0), 2);
241241
}
242242

243243

0 commit comments

Comments
 (0)