Skip to content

Commit 98b18c4

Browse files
committed
Remove unused tests flags
1 parent 2418b24 commit 98b18c4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/cluster/kmeans.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,8 @@ mod tests {
469469
all(target_arch = "wasm32", not(target_os = "wasi")),
470470
wasm_bindgen_test::wasm_bindgen_test
471471
)]
472-
#[cfg(feature = "datasets")]
473472
#[test]
474-
fn fit_predict_iris() {
473+
fn fit_predict() {
475474
let x = DenseMatrix::from_2d_array(&[
476475
&[5.1, 3.5, 1.4, 0.2],
477476
&[4.9, 3.0, 1.4, 0.2],

src/ensemble/random_forest_classifier.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,7 @@ mod tests {
634634
wasm_bindgen_test::wasm_bindgen_test
635635
)]
636636
#[test]
637-
#[cfg(feature = "datasets")]
638-
fn fit_predict_iris() {
637+
fn fit_predict() {
639638
let x = DenseMatrix::from_2d_array(&[
640639
&[5.1, 3.5, 1.4, 0.2],
641640
&[4.9, 3.0, 1.4, 0.2],

0 commit comments

Comments
 (0)