Skip to content

Commit 5aed7f5

Browse files
committed
linting
1 parent 63322c1 commit 5aed7f5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/linear/logistic_regression.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -940,13 +940,12 @@ mod tests {
940940
let y: &Vec<u32> = &(y1.into_iter().chain(y2.into_iter()).collect());
941941
println!("y vec height: {:?}", y.len());
942942
println!("x matrix shape: {:?}", x.shape());
943-
944-
let lr = LogisticRegression::fit(x, y, Default::default()).unwrap();
943+
944+
let lr = LogisticRegression::fit(x, y, Default::default()).unwrap();
945945
let y_hat = lr.predict(&x).unwrap();
946946

947947
println!("y_hat shape: {:?}", y_hat.shape());
948948

949949
assert_eq!(y_hat.shape(), 52181);
950-
951950
}
952951
}

0 commit comments

Comments
 (0)