Skip to content

Commit c2592fd

Browse files
committed
linting
1 parent c987a80 commit c2592fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/linear/logistic_regression.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,8 @@ mod tests {
845845
&[10., -2.],
846846
&[8., 2.],
847847
&[9., 0.],
848-
]).unwrap();
848+
])
849+
.unwrap();
849850
let y: Vec<i32> = vec![0, 0, 1, 1, 2, 1, 1, 0, 0, 2, 1, 1, 0, 0, 1];
850851

851852
let lr = LogisticRegression::fit(&x, &y, Default::default()).unwrap();

0 commit comments

Comments
 (0)