Skip to content

Commit eb6fa77

Browse files
max-sixtyLukeMathWalker
authored andcommitted
remove a couple warnings (#660)
1 parent 98bf3b6 commit eb6fa77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numeric-tests/tests/accuracy.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ fn accurate_mul_with_column_f64() {
229229

230230
// pick dense square or broadcasted to square matrix
231231
match i {
232-
0 ... 3 => b_sq = b_owner.view(),
233-
4 ... 7 => {
232+
0 ..= 3 => b_sq = b_owner.view(),
233+
4 ..= 7 => {
234234
b_row_col = b_owner.column(0);
235235
b_sq = b_row_col.broadcast((k, k)).unwrap();
236236
}

0 commit comments

Comments
 (0)